diff options
| author | Thomas Lenz <tlenz@iaik.tugraz.at> | 2016-03-08 11:10:19 +0100 | 
|---|---|---|
| committer | Thomas Lenz <tlenz@iaik.tugraz.at> | 2016-03-08 11:10:19 +0100 | 
| commit | b9937af42fdab6b85aa1121148bda474c70f5e75 (patch) | |
| tree | b40401aef3a0dff9dac0db55ae6f4b519a6bac49 /id/server/moa-id-commons/src | |
| parent | e2d27757411fdcba586cc162f362c72ca3ae689c (diff) | |
| download | moa-id-spss-b9937af42fdab6b85aa1121148bda474c70f5e75.tar.gz moa-id-spss-b9937af42fdab6b85aa1121148bda474c70f5e75.tar.bz2 moa-id-spss-b9937af42fdab6b85aa1121148bda474c70f5e75.zip | |
finish first beta-version of ELGA mandate-service client-module
Diffstat (limited to 'id/server/moa-id-commons/src')
| -rw-r--r-- | id/server/moa-id-commons/src/main/java/at/gv/egovernment/moa/id/commons/db/dao/session/OASessionStore.java | 24 | 
1 files changed, 1 insertions, 23 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 bead2f593..44ae43115 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 @@ -70,10 +70,7 @@ public class OASessionStore implements Serializable{  	@Column(name = "attributequeryused", unique=false, nullable=false)  	private boolean attributeQueryUsed = false; -	 -	@Column(name = "attQueryContainerID", unique=false, nullable=true) -	private String attQueryContainerID = null; -	 +		  	@Column(name = "created", updatable=false, nullable=false)  //    @Temporal(TemporalType.TIMESTAMP)      private Date created; @@ -203,24 +200,5 @@ public class OASessionStore implements Serializable{  		this.authURL = authURL;  	} -	/** -	 * @return the attQueryContainerID -	 */ -	public String getAttQueryContainerID() { -		return attQueryContainerID; -	} - -	/** -	 * @param attQueryContainerID the attQueryContainerID to set -	 */ -	public void setAttQueryContainerID(String attQueryContainerID) { -		this.attQueryContainerID = attQueryContainerID; -	} - -	 -	 -	 - -  } | 
