Add active and statusChangedOn fields
parent
19243821ed
commit
4b3f1de1be
|
@ -149,6 +149,8 @@ public class ClientDetailsEntity implements ClientDetails {
|
||||||
private Date createdAt; // time the client was created
|
private Date createdAt; // time the client was created
|
||||||
private boolean clearAccessTokensOnRefresh = true; // do we clear access tokens on refresh?
|
private boolean clearAccessTokensOnRefresh = true; // do we clear access tokens on refresh?
|
||||||
private Integer deviceCodeValiditySeconds; // timeout for device codes
|
private Integer deviceCodeValiditySeconds; // timeout for device codes
|
||||||
|
private boolean active = true;
|
||||||
|
private Date statusChangedOn;
|
||||||
|
|
||||||
/** fields for UMA */
|
/** fields for UMA */
|
||||||
private Set<String> claimsRedirectUris;
|
private Set<String> claimsRedirectUris;
|
||||||
|
@ -982,6 +984,38 @@ public class ClientDetailsEntity implements ClientDetails {
|
||||||
this.clearAccessTokensOnRefresh = clearAccessTokensOnRefresh;
|
this.clearAccessTokensOnRefresh = clearAccessTokensOnRefresh;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return the active
|
||||||
|
*/
|
||||||
|
@Basic
|
||||||
|
@Column(name = "active")
|
||||||
|
public boolean isActive() {
|
||||||
|
return active;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param active the active to set
|
||||||
|
*/
|
||||||
|
public void setActive(boolean active) {
|
||||||
|
this.active = active;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return the status changed on
|
||||||
|
*/
|
||||||
|
@Basic
|
||||||
|
@Column(name = "status_changed_on")
|
||||||
|
public Date getStatusChangedOn() {
|
||||||
|
return statusChangedOn;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param statusChangedOn the status changed on to set
|
||||||
|
*/
|
||||||
|
public void setStatusChangedOn(Date statusChangedOn) {
|
||||||
|
this.statusChangedOn = statusChangedOn;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return the claimsRedirectUris
|
* @return the claimsRedirectUris
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue