diff options
Diffstat (limited to 'id.server/src/at/gv/egovernment/moa/id/data')
-rw-r--r-- | id.server/src/at/gv/egovernment/moa/id/data/AuthenticationData.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/id.server/src/at/gv/egovernment/moa/id/data/AuthenticationData.java b/id.server/src/at/gv/egovernment/moa/id/data/AuthenticationData.java index 8e0f3cbcf..c1588fe22 100644 --- a/id.server/src/at/gv/egovernment/moa/id/data/AuthenticationData.java +++ b/id.server/src/at/gv/egovernment/moa/id/data/AuthenticationData.java @@ -131,7 +131,7 @@ public class AuthenticationData { * Returns the bPK. * @return String */ - public String getPBK() { + public String getBPK() { return bPK; } @@ -139,7 +139,7 @@ public class AuthenticationData { * Returns the wbPK. * @return String the wbPK. */ - public String getWPBK() { + public String getWBPK() { return wbPK; } @@ -179,7 +179,7 @@ public class AuthenticationData { * Sets the bPK. * @param bPK The bPK to set */ - public void setPBK(String bPK) { + public void setBPK(String bPK) { this.bPK = bPK; } @@ -187,7 +187,7 @@ public class AuthenticationData { * Sets the wbPK. * @param wbPK The wbPK to set */ - public void setWPBK(String wbPK) { + public void setWBPK(String wbPK) { this.wbPK = wbPK; } |