aboutsummaryrefslogtreecommitdiff
path: root/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/config/OAParameter.java
diff options
context:
space:
mode:
Diffstat (limited to 'id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/config/OAParameter.java')
-rw-r--r--id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/config/OAParameter.java15
1 files changed, 1 insertions, 14 deletions
diff --git a/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/config/OAParameter.java b/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/config/OAParameter.java
index 2d0a0e367..31b88263b 100644
--- a/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/config/OAParameter.java
+++ b/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/config/OAParameter.java
@@ -56,12 +56,7 @@ public class OAParameter {
else
this.businessService = false;
- if (this.oaType.equals("storkService"))
- this.storkService = true;
- else
- this.storkService = false;
-
- this.publicURLPrefix = oa.getPublicURLPrefix();
+ this.publicURLPrefix = oa.getPublicURLPrefix();
this.friendlyName = oa.getFriendlyName();
@@ -87,12 +82,6 @@ public class OAParameter {
*/
private boolean businessService;
- /**
- * specifies whether the online application is a stork application or not (<code>true</code>
- * if value of {@link #oaType} is "storkService"
- */
- private boolean storkService;
-
/**
* public URL prefix of the online application
@@ -152,6 +141,4 @@ public class OAParameter {
return oAuth20Config;
}
- public boolean getStorkService() { return storkService; }
-
}