aboutsummaryrefslogtreecommitdiff
path: root/id.server/src/at/gv/egovernment/moa/id/auth/data/IdentityLink.java
diff options
context:
space:
mode:
Diffstat (limited to 'id.server/src/at/gv/egovernment/moa/id/auth/data/IdentityLink.java')
-rw-r--r--id.server/src/at/gv/egovernment/moa/id/auth/data/IdentityLink.java27
1 files changed, 24 insertions, 3 deletions
diff --git a/id.server/src/at/gv/egovernment/moa/id/auth/data/IdentityLink.java b/id.server/src/at/gv/egovernment/moa/id/auth/data/IdentityLink.java
index e2ad2625a..cc58db916 100644
--- a/id.server/src/at/gv/egovernment/moa/id/auth/data/IdentityLink.java
+++ b/id.server/src/at/gv/egovernment/moa/id/auth/data/IdentityLink.java
@@ -14,10 +14,14 @@ import org.w3c.dom.Element;
*/
public class IdentityLink {
/**
- * <code>"identificationValue"</code> is the translation of <code>"ZMR-Zahl"</code>.
+ * <code>"identificationValue"</code> is the translation of <code>"Stammzahl"</code>.
*/
private String identificationValue;
/**
+ * <code>"identificationType"</code> type of the identificationValue in the IdentityLink.
+ */
+ private String identificationType;
+ /**
* first name
*/
private String givenName;
@@ -82,13 +86,22 @@ public class IdentityLink {
/**
* Returns the identificationValue.
- * <code>"identificationValue"</code> is the translation of <code>"ZMR-Zahl"</code>.
+ * <code>"identificationValue"</code> is the translation of <code>"Stammzahl"</code>.
* @return String
*/
public String getIdentificationValue() {
return identificationValue;
}
+ /**
+ * Returns the identificationType.
+ * <code>"identificationType"</code> type of the identificationValue in the IdentityLink.
+ * @return String
+ */
+ public String getIdentificationType() {
+ return identificationType;
+ }
+
/**
* Sets the dateOfBirth.
* @param dateOfBirth The dateOfBirth to set
@@ -115,12 +128,20 @@ public class IdentityLink {
/**
* Sets the identificationValue.
- * <code>"identificationValue"</code> is the translation of <code>"ZMR-Zahl"</code>.
+ * <code>"identificationValue"</code> is the translation of <code>"Stammzahl"</code>.
* @param identificationValue The identificationValue to set
*/
public void setIdentificationValue(String identificationValue) {
this.identificationValue = identificationValue;
}
+
+ /**
+ * Sets the Type of the identificationValue.
+ * @param identificationType The type of identificationValue to set
+ */
+ public void setIdentificationType(String identificationType) {
+ this.identificationType = identificationType;
+ }
/**
* Returns the samlAssertion.