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

View File

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

View File

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

View File

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

View File

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