diff options
| -rw-r--r-- | id.server/src/at/gv/egovernment/moa/id/config/auth/VerifyInfoboxParameter.java | 26 | ||||
| -rw-r--r-- | id.server/src/at/gv/egovernment/moa/id/config/auth/VerifyInfoboxParameters.java | 6 | 
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_} | 
