diff options
author | Thomas Lenz <tlenz@iaik.tugraz.at> | 2014-04-15 11:40:02 +0200 |
---|---|---|
committer | Thomas Lenz <tlenz@iaik.tugraz.at> | 2014-04-15 11:40:02 +0200 |
commit | 25de471cd8bf27d0cfa084edd29018596c804861 (patch) | |
tree | 96d6ce53d40cf02ac2fc95e617483f9f8e7e3cfe /id/server/moa-id-commons/src/main | |
parent | bfae00e07fd2932f951622a4f25ecf593c0d46df (diff) | |
download | moa-id-spss-25de471cd8bf27d0cfa084edd29018596c804861.tar.gz moa-id-spss-25de471cd8bf27d0cfa084edd29018596c804861.tar.bz2 moa-id-spss-25de471cd8bf27d0cfa084edd29018596c804861.zip |
store additional information for Single LogOut in database
Diffstat (limited to 'id/server/moa-id-commons/src/main')
-rw-r--r-- | id/server/moa-id-commons/src/main/java/at/gv/egovernment/moa/id/commons/db/dao/session/OASessionStore.java | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/id/server/moa-id-commons/src/main/java/at/gv/egovernment/moa/id/commons/db/dao/session/OASessionStore.java b/id/server/moa-id-commons/src/main/java/at/gv/egovernment/moa/id/commons/db/dao/session/OASessionStore.java index 6d1b64262..25b48310e 100644 --- a/id/server/moa-id-commons/src/main/java/at/gv/egovernment/moa/id/commons/db/dao/session/OASessionStore.java +++ b/id/server/moa-id-commons/src/main/java/at/gv/egovernment/moa/id/commons/db/dao/session/OASessionStore.java @@ -56,6 +56,12 @@ public class OASessionStore implements Serializable{ @Column(name = "assertionSessionID", unique=false, nullable=true) private String assertionSessionID; + @Column(name = "userNameID", unique=false, nullable=true) + private String userNameID; + + @Column(name = "protocolType", unique=false, nullable=true) + private String protocolType; + @Column(name = "created", updatable=false, nullable=false) // @Temporal(TemporalType.TIMESTAMP) private Date created; @@ -115,6 +121,34 @@ public class OASessionStore implements Serializable{ this.assertionSessionID = assertionSessionID; } + /** + * @return the userNameID + */ + public String getUserNameID() { + return userNameID; + } + + /** + * @param userNameID the userNameID to set + */ + public void setUserNameID(String userNameID) { + this.userNameID = userNameID; + } + + /** + * @return the protocolType + */ + public String getProtocolType() { + return protocolType; + } + + /** + * @param protocolType the protocolType to set + */ + public void setProtocolType(String protocolType) { + this.protocolType = protocolType; + } + } |