aboutsummaryrefslogtreecommitdiff
path: root/id.server/src/at/gv/egovernment/moa/id/auth/data/InfoboxValidatorParamsImpl.java
diff options
context:
space:
mode:
authorharald.bratko <harald.bratko@d688527b-c9ab-4aba-bd8d-4036d912da1d>2007-05-03 15:20:51 +0000
committerharald.bratko <harald.bratko@d688527b-c9ab-4aba-bd8d-4036d912da1d>2007-05-03 15:20:51 +0000
commit69a788eae0a6dd0630b18f585f82ce3cebd9ce82 (patch)
treecb49eb943d6616651ae2db43ea55e2510076625e /id.server/src/at/gv/egovernment/moa/id/auth/data/InfoboxValidatorParamsImpl.java
parent8f8e6fde967e4b59ec3d67ef61f32c8778df0f01 (diff)
downloadmoa-id-spss-69a788eae0a6dd0630b18f585f82ce3cebd9ce82.tar.gz
moa-id-spss-69a788eae0a6dd0630b18f585f82ce3cebd9ce82.tar.bz2
moa-id-spss-69a788eae0a6dd0630b18f585f82ce3cebd9ce82.zip
Passing hideStammzahl to a infobox validator indicating whether "Stammzahlen" should be hidden or not.
git-svn-id: https://joinup.ec.europa.eu/svn/moa-idspss/trunk@832 d688527b-c9ab-4aba-bd8d-4036d912da1d
Diffstat (limited to 'id.server/src/at/gv/egovernment/moa/id/auth/data/InfoboxValidatorParamsImpl.java')
-rw-r--r--id.server/src/at/gv/egovernment/moa/id/auth/data/InfoboxValidatorParamsImpl.java22
1 files changed, 21 insertions, 1 deletions
diff --git a/id.server/src/at/gv/egovernment/moa/id/auth/data/InfoboxValidatorParamsImpl.java b/id.server/src/at/gv/egovernment/moa/id/auth/data/InfoboxValidatorParamsImpl.java
index 46a67d48b..fcfc054d8 100644
--- a/id.server/src/at/gv/egovernment/moa/id/auth/data/InfoboxValidatorParamsImpl.java
+++ b/id.server/src/at/gv/egovernment/moa/id/auth/data/InfoboxValidatorParamsImpl.java
@@ -82,6 +82,10 @@ public class InfoboxValidatorParamsImpl implements InfoboxValidatorParams {
* The identity link.
*/
private Element identityLink_;
+ /**
+ * Indicates whether source pins (<code>Stammzahl</code>en) must be hidden or not.
+ */
+ private boolean hideStammzahl_;
/**
* Application specific parameters.
@@ -184,6 +188,13 @@ public class InfoboxValidatorParamsImpl implements InfoboxValidatorParams {
public Element getIdentityLink() {
return identityLink_;
}
+
+ /**
+ * @see at.gv.egovernment.moa.id.auth.data.InfoboxValidatorParams#hideStammzahl
+ */
+ public boolean getHideStammzahl() {
+ return hideStammzahl_;
+ }
/**
* @see at.gv.egovernment.moa.id.auth.data.InfoboxValidatorParams#getApplicationSpecificParams()
@@ -313,7 +324,6 @@ public class InfoboxValidatorParamsImpl implements InfoboxValidatorParams {
target_ = target;
}
-
/**
* Sets the ID of the trust profile used for validating certificates.
*
@@ -323,4 +333,14 @@ public class InfoboxValidatorParamsImpl implements InfoboxValidatorParams {
trustProfileID_ = trustProfileID;
}
+ /**
+ * Sets the {@link #hideStammzahl_} parameter.
+ *
+ * @param hideStammzahl <code>True</code> if source pins (<code>Stammzahl</code>en) should
+ * be hidden, otherwise <code>false</code>.
+ */
+ public void setHideStammzahl(boolean hideStammzahl) {
+ this.hideStammzahl_ = hideStammzahl;
+ }
+
}