fix
This commit is contained in:
@@ -60,6 +60,12 @@ public class Accounts extends JpaBaseEntity implements Serializable {
|
||||
private String relatedUsername;
|
||||
@Column
|
||||
private String relatedPassword;
|
||||
@Column
|
||||
private String createType;
|
||||
@Column
|
||||
private String strategyId;
|
||||
@Column
|
||||
private int status;
|
||||
|
||||
UserInfo userInfo;
|
||||
|
||||
@@ -156,6 +162,31 @@ public class Accounts extends JpaBaseEntity implements Serializable {
|
||||
this.userInfo = userInfo;
|
||||
}
|
||||
|
||||
|
||||
public String getCreateType() {
|
||||
return createType;
|
||||
}
|
||||
|
||||
public void setCreateType(String createType) {
|
||||
this.createType = createType;
|
||||
}
|
||||
|
||||
public String getStrategyId() {
|
||||
return strategyId;
|
||||
}
|
||||
|
||||
public void setStrategyId(String strategyId) {
|
||||
this.strategyId = strategyId;
|
||||
}
|
||||
|
||||
public int getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(int status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "AppAccounts [uid=" + userId + ", username=" + username + ", displayName=" + displayName + ", appId="
|
||||
|
||||
@@ -90,6 +90,9 @@ public class AppsOAuth20Details extends Apps {
|
||||
this.setVendor(application.getVendor());
|
||||
this.setVendorUrl(application.getVendorUrl());
|
||||
this.setVisible(application.getVisible());
|
||||
this.setAdapter(application.getAdapter());
|
||||
this.setAdapterId(application.getAdapterId());
|
||||
this.setAdapterName(application.getAdapterName());
|
||||
|
||||
this.clientSecret = baseClientDetails.getClientSecret();
|
||||
this.scope = baseClientDetails.getScope().toString();
|
||||
@@ -114,6 +117,7 @@ public class AppsOAuth20Details extends Apps {
|
||||
this.approvalPrompt = baseClientDetails.getApprovalPrompt();
|
||||
|
||||
this.pkce = baseClientDetails.getPkce();
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user