aboutsummaryrefslogtreecommitdiff
path: root/id.server/src/at/gv/egovernment/moa/id/config/auth/VerifyInfoboxParameter.java
diff options
context:
space:
mode:
Diffstat (limited to 'id.server/src/at/gv/egovernment/moa/id/config/auth/VerifyInfoboxParameter.java')
-rw-r--r--id.server/src/at/gv/egovernment/moa/id/config/auth/VerifyInfoboxParameter.java26
1 files changed, 12 insertions, 14 deletions
diff --git a/id.server/src/at/gv/egovernment/moa/id/config/auth/VerifyInfoboxParameter.java b/id.server/src/at/gv/egovernment/moa/id/config/auth/VerifyInfoboxParameter.java
index 9caa9519e..fbd42f975 100644
--- a/id.server/src/at/gv/egovernment/moa/id/config/auth/VerifyInfoboxParameter.java
+++ b/id.server/src/at/gv/egovernment/moa/id/config/auth/VerifyInfoboxParameter.java
@@ -3,8 +3,6 @@ package at.gv.egovernment.moa.id.config.auth;
import java.io.IOException;
import java.util.Iterator;
import java.util.List;
-import java.util.Map;
-import java.util.Set;
import javax.xml.transform.TransformerException;
@@ -30,7 +28,7 @@ public class VerifyInfoboxParameter {
* The identifier of the infobox to be verified. This identifier must exactly the
* identifier of the infobox returned by BKU.
*/
- private String identifier_;
+ protected String identifier_;
/**
* The friendly name of the infobox.
@@ -41,17 +39,17 @@ public class VerifyInfoboxParameter {
* <br>If not specified within the config file the {@link #identifier_ infobox identifier}
* will be used.
*/
- private String friendlyName_;
+ protected String friendlyName_;
/**
* The Id of the TrustProfile to be used for validating certificates.
*/
- private String trustProfileID_;
+ protected String trustProfileID_;
/**
* The full name of the class to be used for verifying the infobox.
*/
- private String validatorClassName_;
+ protected String validatorClassName_;
/**
* Schema location URIs that may be needed by the
@@ -59,29 +57,29 @@ public class VerifyInfoboxParameter {
* Each entry in the list is a {@link at.gv.egovernment.moa.id.auth.data.Schema Schema}
* specifying the location of an XML schema.
*/
- private List schemaLocations_;
+ protected List schemaLocations_;
/**
* Application specific parameters that may be needed for verifying an infobox.
*/
- private Element applicationSpecificParams_;
+ protected Element applicationSpecificParams_;
/**
* Specifies if the infobox is be required to be returned by the BKU.
*/
- private boolean required_;
+ protected boolean required_;
/**
* Specifies whether the <code>Stammzahl</code> should be passed to the verifying
* application or not.
*/
- private boolean provideStammzahl_;
+ protected boolean provideStammzahl_;
/**
* Specifies whether the <code>identity link</code> should be passed to the verifying
* application or not.
*/
- private boolean provideIdentityLink_;
+ protected boolean provideIdentityLink_;
/**
* Initializes this VerifiyInfoboxParamater with the given identifier and a default
@@ -102,7 +100,7 @@ public class VerifyInfoboxParameter {
/**
* Returns application specific parameters.
- * Each child element of this element contains a verifying application specific parameter.
+ * Each child element of this element contains a verifying application specific parameter. {@link #applicationSpecificParams_}
*
* @see #applicationSpecificParams_
*
@@ -198,7 +196,7 @@ public class VerifyInfoboxParameter {
}
/**
- * Sets the {@link provideStammzahl_} parameter.
+ * Sets the {@link #provideStammzahl_} parameter.
*
* @param provideStammzahl <code>True</code> if the <code>Stammzahl</code> should be
* passed to the verifying application, otherwise <code>false</code>.
@@ -218,7 +216,7 @@ public class VerifyInfoboxParameter {
}
/**
- * Sets the {@link required_} parameter.
+ * Sets the {@link #required_} parameter.
*
* @param required <code>True</code> if the infobox is required to be returned by the
* BKU, otherwise <code>false</code>.