Remove tenant id from the Application Release bean

merge-requests/7/head
lasantha 7 years ago
parent e00aa1be09
commit f9559a510b

@ -34,8 +34,6 @@ public class ApplicationRelease {
private String version; private String version;
private String tenantId;
private String uuid; private String uuid;
private String appStoredLoc; private String appStoredLoc;
@ -108,10 +106,6 @@ public class ApplicationRelease {
this.version = version; this.version = version;
} }
public void setTenantId(String tenantId) {
this.tenantId = tenantId;
}
public String getUuid() { public String getUuid() {
return uuid; return uuid;
} }
@ -148,10 +142,6 @@ public class ApplicationRelease {
return version; return version;
} }
public String getTenantId() {
return tenantId;
}
public Double getPrice() { public Double getPrice() {
return price; return price;
} }

Loading…
Cancel
Save