summaryrefslogtreecommitdiff
path: root/eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/idp/IspConfiguration.java
diff options
context:
space:
mode:
Diffstat (limited to 'eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/idp/IspConfiguration.java')
-rw-r--r--eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/idp/IspConfiguration.java35
1 files changed, 17 insertions, 18 deletions
diff --git a/eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/idp/IspConfiguration.java b/eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/idp/IspConfiguration.java
index 37ca4779..ab3ab87c 100644
--- a/eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/idp/IspConfiguration.java
+++ b/eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/idp/IspConfiguration.java
@@ -22,16 +22,15 @@ package at.gv.egiz.eaaf.core.api.idp;
import java.io.Serializable;
import java.util.List;
import java.util.Map;
-import at.gv.egiz.eaaf.core.api.data.EAAFConstants;
public interface IspConfiguration extends Serializable {
- public static final String CONFIG_KEY_RESTRICTIONS_BASEID_INTERNAL =
+ String CONFIG_KEY_RESTRICTIONS_BASEID_INTERNAL =
"configuration.restrictions.baseID.idpProcessing";
- public static final String CONFIG_KEY_RESTRICTIONS_BASEID_TRANSMISSION =
+ String CONFIG_KEY_RESTRICTIONS_BASEID_TRANSMISSION =
"configuration.restrictions.baseID.spTransmission";
- public static final String CONFIG_KEY_RESTRICTIONS_EID_DEMO_MODE =
+ String CONFIG_KEY_RESTRICTIONS_EID_DEMO_MODE =
"configuration.restrictions.eIDTestMode";
/**
@@ -39,7 +38,7 @@ public interface IspConfiguration extends Serializable {
*
* @return an unmodifiable map of key/value pairs
*/
- public Map<String, String> getFullConfiguration();
+ Map<String, String> getFullConfiguration();
/**
* Get a configuration value from Service Provider key/value configuration.
@@ -47,7 +46,7 @@ public interface IspConfiguration extends Serializable {
* @param key The key identifier of a configuration value
* @return The configuration value {String} or null if the key does not exist
*/
- public String getConfigurationValue(String key);
+ String getConfigurationValue(String key);
/**
* Get a configuration value from Service Provider key/value configuration.
@@ -56,7 +55,7 @@ public interface IspConfiguration extends Serializable {
* @param defaultValue Default value if key does not exist
* @return The configuration value {String} or defaultValue if the key does not exist
*/
- public String getConfigurationValue(String key, String defaultValue);
+ String getConfigurationValue(String key, String defaultValue);
/**
* Get a boolean configuration value from Service Provider key/value configuration.
@@ -64,7 +63,7 @@ public interface IspConfiguration extends Serializable {
* @param key The key identifier of a configuration value
* @return true / false, or false if the key does not exist
*/
- public boolean isConfigurationValue(String key);
+ boolean isConfigurationValue(String key);
/**
@@ -74,7 +73,7 @@ public interface IspConfiguration extends Serializable {
* @param defaultValue Default value if key does not exist
* @return true / false, or defaultValue if the key does not exist
*/
- public boolean isConfigurationValue(String key, boolean defaultValue);
+ boolean isConfigurationValue(String key, boolean defaultValue);
/**
* Check if a configuration key is available in this Service Provider configuration.
@@ -89,14 +88,14 @@ public interface IspConfiguration extends Serializable {
*
* @return
*/
- public String getUniqueIdentifier();
+ String getUniqueIdentifier();
/**
* Return the unique identifier of this Service Provider.
*
* @return
*/
- public String getFriendlyName();
+ String getFriendlyName();
/**
* Indicates if this service provider has private area restrictions that disallow baseId.
@@ -104,7 +103,7 @@ public interface IspConfiguration extends Serializable {
*
* @return true if there is a restriction, otherwise false
*/
- public boolean hasBaseIdInternalProcessingRestriction();
+ boolean hasBaseIdInternalProcessingRestriction();
/**
@@ -113,7 +112,7 @@ public interface IspConfiguration extends Serializable {
*
* @return true if there is a restriction, otherwise false
*/
- public boolean hasBaseIdTransferRestriction();
+ boolean hasBaseIdTransferRestriction();
/**
* Get the {@link List} of identifier's that indicates no baseID processing restriction
@@ -122,7 +121,7 @@ public interface IspConfiguration extends Serializable {
*
* @return
*/
- public List<String> getTargetsWithNoBaseIdInternalProcessingRestriction();
+ List<String> getTargetsWithNoBaseIdInternalProcessingRestriction();
/**
* Get the {@link List} of identifier's that indicates no baseID transfer restriction exists.<br>
@@ -130,7 +129,7 @@ public interface IspConfiguration extends Serializable {
*
* @return
*/
- public List<String> getTargetsWithNoBaseIdTransferRestriction();
+ List<String> getTargetsWithNoBaseIdTransferRestriction();
/**
* Get the List eIDAS LoA that are required by this service provider.
@@ -140,7 +139,7 @@ public interface IspConfiguration extends Serializable {
*
* @return return List of eIDAS LoAs
*/
- public List<String> getRequiredLoA();
+ List<String> getRequiredLoA();
/**
* Get required matching mode for LoAs {@link EIDAS_LOA_MATCHING_MINIMUM}.
@@ -148,7 +147,7 @@ public interface IspConfiguration extends Serializable {
*
* @return
*/
- public String getLoAMatchingMode();
+ String getLoAMatchingMode();
/**
@@ -158,6 +157,6 @@ public interface IspConfiguration extends Serializable {
*
* @return area identifier with prefix
*/
- public String getAreaSpecificTargetIdentifier();
+ String getAreaSpecificTargetIdentifier();
}