explicitly mapped missing JPA columns in common-oauth2.model #317

pull/357/merge
William Kim 2013-06-11 14:42:35 -04:00 committed by Justin Richer
parent c577b691c7
commit 46641a2fa1
5 changed files with 15 additions and 6 deletions

View File

@ -49,6 +49,7 @@ public class AuthenticationHolderEntity {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(name = "id")
public Long getId() {
return id;
}
@ -69,6 +70,7 @@ public class AuthenticationHolderEntity {
@Lob
@Basic(fetch=FetchType.LAZY)
@Column(name = "authentication")
public OAuth2Authentication getAuthentication() {
return authentication;
}

View File

@ -72,6 +72,7 @@ public class AuthorizationCodeEntity {
*/
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(name = "id")
public Long getId() {
return id;
}
@ -87,6 +88,7 @@ public class AuthorizationCodeEntity {
* @return the code
*/
@Basic
@Column(name = "code")
public String getCode() {
return code;
}

View File

@ -218,6 +218,7 @@ public class ClientDetailsEntity implements ClientDetails {
*/
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(name = "id")
public Long getId() {
return id;
}

View File

@ -103,6 +103,7 @@ public class OAuth2AccessTokenEntity implements OAuth2AccessToken {
*/
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(name = "id")
public Long getId() {
return id;
}
@ -183,6 +184,7 @@ public class OAuth2AccessTokenEntity implements OAuth2AccessToken {
@Override
@Basic
@Temporal(javax.persistence.TemporalType.TIMESTAMP)
@Column(name = "expiration")
public Date getExpiration() {
return expiration;
}

View File

@ -80,6 +80,7 @@ public class OAuth2RefreshTokenEntity implements OAuth2RefreshToken {
*/
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(name = "id")
public Long getId() {
return id;
}
@ -131,6 +132,7 @@ public class OAuth2RefreshTokenEntity implements OAuth2RefreshToken {
@Basic
@Temporal(javax.persistence.TemporalType.TIMESTAMP)
@Column(name = "expiration")
public Date getExpiration() {
return expiration;
}