diff options
| author | Bojan Suzic <bojan.suzic@iaik.tugraz.at> | 2014-01-27 17:42:51 +0100 | 
|---|---|---|
| committer | Bojan Suzic <bojan.suzic@iaik.tugraz.at> | 2014-01-27 17:42:51 +0100 | 
| commit | aba2defe8f95cf960395158f6eb2ad7b1fb6e150 (patch) | |
| tree | 298a0165a30b8538b89abb93a399c615f91702d3 /id/server/moa-id-commons | |
| parent | ed9ad9b0c13ee0de3231bab038f35b01beeb0d0b (diff) | |
| parent | cea2f395ec773b386ec628d60120752cf320f6b6 (diff) | |
| download | moa-id-spss-aba2defe8f95cf960395158f6eb2ad7b1fb6e150.tar.gz moa-id-spss-aba2defe8f95cf960395158f6eb2ad7b1fb6e150.tar.bz2 moa-id-spss-aba2defe8f95cf960395158f6eb2ad7b1fb6e150.zip | |
merging
Diffstat (limited to 'id/server/moa-id-commons')
3 files changed, 14 insertions, 3 deletions
| diff --git a/id/server/moa-id-commons/pom.xml b/id/server/moa-id-commons/pom.xml index 3862a0d82..9dc17d7c9 100644 --- a/id/server/moa-id-commons/pom.xml +++ b/id/server/moa-id-commons/pom.xml @@ -3,7 +3,7 @@    <parent>      <groupId>MOA.id</groupId>      <artifactId>moa-id</artifactId> -    <version>1.9.97-SNAPSHOT</version> +    <version>1.9.96-SNAPSHOT</version>    </parent>    <artifactId>moa-id-commons</artifactId>    <name>moa-id-commons</name> diff --git a/id/server/moa-id-commons/src/main/java/at/gv/egovernment/moa/id/commons/db/dao/session/AuthenticatedSessionStore.java b/id/server/moa-id-commons/src/main/java/at/gv/egovernment/moa/id/commons/db/dao/session/AuthenticatedSessionStore.java index ed865d70f..97cc20d9f 100644 --- a/id/server/moa-id-commons/src/main/java/at/gv/egovernment/moa/id/commons/db/dao/session/AuthenticatedSessionStore.java +++ b/id/server/moa-id-commons/src/main/java/at/gv/egovernment/moa/id/commons/db/dao/session/AuthenticatedSessionStore.java @@ -12,14 +12,14 @@ import javax.persistence.GeneratedValue;  import javax.persistence.GenerationType;  import javax.persistence.Id;  import javax.persistence.Lob; +import javax.persistence.NamedQueries; +import javax.persistence.NamedQuery;  import javax.persistence.OneToMany;  import javax.persistence.PrePersist;  import javax.persistence.PreUpdate;  import javax.persistence.Table;  import javax.persistence.Temporal;  import javax.persistence.TemporalType; -import javax.persistence.NamedQueries; -import javax.persistence.NamedQuery;  import org.hibernate.annotations.DynamicUpdate; diff --git a/id/server/moa-id-commons/src/main/resources/config/moaid_config_2.0.xsd b/id/server/moa-id-commons/src/main/resources/config/moaid_config_2.0.xsd index 085f187ff..481f12091 100644 --- a/id/server/moa-id-commons/src/main/resources/config/moaid_config_2.0.xsd +++ b/id/server/moa-id-commons/src/main/resources/config/moaid_config_2.0.xsd @@ -540,6 +540,7 @@  						</xsd:element>  						<xsd:element ref="OA_SAML1" minOccurs="0"/>  						<xsd:element ref="OA_PVP2" minOccurs="0"/> +						<xsd:element ref="OA_OAUTH20" minOccurs="0"/>  					</xsd:sequence>  					<!--xsd:element ref="pr:AbstractSimpleIdentification" minOccurs="0"   						maxOccurs="1"/ --> @@ -872,6 +873,7 @@  			</xsd:sequence>  		</xsd:complexType>  	</xsd:element> +	  	<xsd:element name="OA_PVP2">  		<xsd:complexType>  			<xsd:sequence> @@ -898,6 +900,15 @@  			</xsd:sequence>  		</xsd:complexType>  	</xsd:element> +		<xsd:element name="OA_OAUTH20"> +		<xsd:complexType> +			<xsd:sequence> +				<xsd:element name="oAuthClientId" type="xsd:string"/> +				<xsd:element name="oAuthClientSecret" type="xsd:string"/> +				<xsd:element name="oAuthRedirectUri" type="xsd:string"/> +			</xsd:sequence> +		</xsd:complexType> +	</xsd:element>  	<xsd:element name="IdentificationNumber">  		<xsd:complexType>  			<xsd:sequence> | 
