|
@@ -17,10 +17,6 @@ public class DeployVO {
|
|
|
|
|
|
private DeployMode mode;
|
|
private DeployMode mode;
|
|
|
|
|
|
- private String accessKey;
|
|
|
|
-
|
|
|
|
- private String accessSecret;
|
|
|
|
-
|
|
|
|
private AppControl control;
|
|
private AppControl control;
|
|
|
|
|
|
private Set<String> ipAllow;
|
|
private Set<String> ipAllow;
|
|
@@ -34,8 +30,6 @@ public class DeployVO {
|
|
this.app = new AppVO(appService.getById(deploy.getAppId()));
|
|
this.app = new AppVO(appService.getById(deploy.getAppId()));
|
|
this.name = deploy.getName();
|
|
this.name = deploy.getName();
|
|
this.mode = deploy.getMode();
|
|
this.mode = deploy.getMode();
|
|
- this.accessKey = deploy.getAccessKey();
|
|
|
|
- this.accessSecret = deploy.getAccessSecret();
|
|
|
|
this.control = deploy.getControl();
|
|
this.control = deploy.getControl();
|
|
this.ipAllow = deploy.getIpAllow();
|
|
this.ipAllow = deploy.getIpAllow();
|
|
this.createTime = deploy.getCreateTime();
|
|
this.createTime = deploy.getCreateTime();
|
|
@@ -74,22 +68,6 @@ public class DeployVO {
|
|
this.mode = mode;
|
|
this.mode = mode;
|
|
}
|
|
}
|
|
|
|
|
|
- public String getAccessKey() {
|
|
|
|
- return accessKey;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setAccessKey(String accessKey) {
|
|
|
|
- this.accessKey = accessKey;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getAccessSecret() {
|
|
|
|
- return accessSecret;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setAccessSecret(String accessSecret) {
|
|
|
|
- this.accessSecret = accessSecret;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
public AppControl getControl() {
|
|
public AppControl getControl() {
|
|
return control;
|
|
return control;
|
|
}
|
|
}
|