aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpeter.danner <peter.danner@d688527b-c9ab-4aba-bd8d-4036d912da1d>2007-07-31 14:57:23 +0000
committerpeter.danner <peter.danner@d688527b-c9ab-4aba-bd8d-4036d912da1d>2007-07-31 14:57:23 +0000
commit47a13642cf5dc0f85ab18c4987618ae3aea81d35 (patch)
treee4c984a75d3666d781e2005812beed98677f5d00
parentb573a90aa69b3d66b0a800d76398ef41f5ccb022 (diff)
downloadmoa-id-spss-47a13642cf5dc0f85ab18c4987618ae3aea81d35.tar.gz
moa-id-spss-47a13642cf5dc0f85ab18c4987618ae3aea81d35.tar.bz2
moa-id-spss-47a13642cf5dc0f85ab18c4987618ae3aea81d35.zip
Fixed Javadoc, switched private members to protected
git-svn-id: https://joinup.ec.europa.eu/svn/moa-idspss/trunk@865 d688527b-c9ab-4aba-bd8d-4036d912da1d
-rw-r--r--id.server/src/at/gv/egovernment/moa/id/config/auth/VerifyInfoboxParameter.java26
-rw-r--r--id.server/src/at/gv/egovernment/moa/id/config/auth/VerifyInfoboxParameters.java6
2 files changed, 15 insertions, 17 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>.
diff --git a/id.server/src/at/gv/egovernment/moa/id/config/auth/VerifyInfoboxParameters.java b/id.server/src/at/gv/egovernment/moa/id/config/auth/VerifyInfoboxParameters.java
index b9f669196..15c0c328c 100644
--- a/id.server/src/at/gv/egovernment/moa/id/config/auth/VerifyInfoboxParameters.java
+++ b/id.server/src/at/gv/egovernment/moa/id/config/auth/VerifyInfoboxParameters.java
@@ -18,13 +18,13 @@ public class VerifyInfoboxParameters {
* Each of these objects contains parameters that maybe needed for validating an
* infobox.
*/
- private Map infoboxParameters_;
+ protected Map infoboxParameters_;
/**
* A list of the identifiers of the infoboxes supported by this
* VerifyInfoboxParameters;
*/
- private List identifiers_;
+ protected List identifiers_;
/**
* Holds the (comma separated) identifiers of those infoboxes MOA-IF is able to validate
@@ -32,7 +32,7 @@ public class VerifyInfoboxParameters {
* The string will be added as value of the <code>PushInfobox</code> parameter in the
* HTML form used for reading the infoboxes from the BKU.
*/
- private String pushInfobox_;
+ protected String pushInfobox_;
/**
* Initializes this VerifyInfoboxParameters with an empty {@link #infoboxParameters_}