AccountsStrategy
This commit is contained in:
@@ -42,17 +42,20 @@ public class AccountsStrategy extends JpaBaseEntity implements Serializable {
|
||||
private String name;
|
||||
@Column
|
||||
private String appId;
|
||||
private byte[] appIcon;
|
||||
@Column
|
||||
private String appName;
|
||||
@Column
|
||||
private String mapping;
|
||||
|
||||
@Column
|
||||
String filters ;
|
||||
|
||||
@Column
|
||||
String orgIdsList;
|
||||
@Column
|
||||
String suffixes;
|
||||
@Column
|
||||
String createType;
|
||||
@Column
|
||||
String status;
|
||||
@Column
|
||||
String description;
|
||||
@@ -173,7 +176,31 @@ public class AccountsStrategy extends JpaBaseEntity implements Serializable {
|
||||
this.mapping = mapping;
|
||||
}
|
||||
|
||||
@Override
|
||||
public byte[] getAppIcon() {
|
||||
return appIcon;
|
||||
}
|
||||
|
||||
public void setAppIcon(byte[] appIcon) {
|
||||
this.appIcon = appIcon;
|
||||
}
|
||||
|
||||
public String getCreateType() {
|
||||
return createType;
|
||||
}
|
||||
|
||||
public void setCreateType(String createType) {
|
||||
this.createType = createType;
|
||||
}
|
||||
|
||||
public String getSuffixes() {
|
||||
return suffixes;
|
||||
}
|
||||
|
||||
public void setSuffixes(String suffixes) {
|
||||
this.suffixes = suffixes;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
StringBuilder builder = new StringBuilder();
|
||||
builder.append("AccountsStrategy [id=");
|
||||
|
||||
@@ -140,9 +140,6 @@ public class Apps extends JpaBaseEntity implements Serializable {
|
||||
|
||||
@Column
|
||||
private String adapter;
|
||||
|
||||
@Column
|
||||
protected int accountMgmt;
|
||||
|
||||
protected Accounts appUser;
|
||||
@Column
|
||||
@@ -586,14 +583,6 @@ public class Apps extends JpaBaseEntity implements Serializable {
|
||||
this.adapterName = adapterName;
|
||||
}
|
||||
|
||||
public int getAccountMgmt() {
|
||||
return accountMgmt;
|
||||
}
|
||||
|
||||
public void setAccountMgmt(int accountMgmt) {
|
||||
this.accountMgmt = accountMgmt;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
StringBuilder builder = new StringBuilder();
|
||||
|
||||
Reference in New Issue
Block a user