mirror of
https://github.com/apache/cloudstack
synced 2026-08-17 09:39:05 +00:00
95 lines
2.3 KiB
Java
95 lines
2.3 KiB
Java
package com.cloud.async.executor;
|
|
|
|
import com.cloud.serializer.Param;
|
|
|
|
public class IngressRuleResultObject {
|
|
@Param(name="id")
|
|
private Long id;
|
|
|
|
@Param(name="startport")
|
|
private int startPort;
|
|
|
|
@Param(name="endport")
|
|
private int endPort;
|
|
|
|
@Param(name="protocol")
|
|
private String protocol;
|
|
|
|
@Param(name="securitygroup")
|
|
private String allowedSecurityGroup = null;
|
|
|
|
@Param(name="account")
|
|
private String allowedSecGroupAcct = null;
|
|
|
|
@Param(name="cidr")
|
|
private String allowedSourceIpCidr = null;
|
|
|
|
public IngressRuleResultObject() { }
|
|
|
|
public IngressRuleResultObject(Long id, int startPort, int endPort, String protocol, String allowedSecurityGroup, String allowedSecGroupAcct, String allowedSourceIpCidr) {
|
|
this.id = id;
|
|
this.startPort = startPort;
|
|
this.endPort = endPort;
|
|
this.protocol = protocol;
|
|
this.allowedSecurityGroup = allowedSecurityGroup;
|
|
this.allowedSecGroupAcct = allowedSecGroupAcct;
|
|
this.allowedSourceIpCidr = allowedSourceIpCidr;
|
|
}
|
|
|
|
public Long getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(Long id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public int getStartPort() {
|
|
return startPort;
|
|
}
|
|
|
|
public void setStartPort(int startPort) {
|
|
this.startPort = startPort;
|
|
}
|
|
|
|
public int getEndPort() {
|
|
return endPort;
|
|
}
|
|
|
|
public void setEndPort(int endPort) {
|
|
this.endPort = endPort;
|
|
}
|
|
|
|
public String getProtocol() {
|
|
return protocol;
|
|
}
|
|
|
|
public void setProtocol(String protocol) {
|
|
this.protocol = protocol;
|
|
}
|
|
|
|
public String getAllowedSecurityGroup() {
|
|
return allowedSecurityGroup;
|
|
}
|
|
|
|
public void setAllowedSecurityGroup(String allowedSecurityGroup) {
|
|
this.allowedSecurityGroup = allowedSecurityGroup;
|
|
}
|
|
|
|
public String getAllowedSecGroupAcct() {
|
|
return allowedSecGroupAcct;
|
|
}
|
|
|
|
public void setAllowedSecGroupAcct(String allowedSecGroupAcct) {
|
|
this.allowedSecGroupAcct = allowedSecGroupAcct;
|
|
}
|
|
|
|
public String getAllowedSourceIpCidr() {
|
|
return allowedSourceIpCidr;
|
|
}
|
|
|
|
public void setAllowedSourceIpCidr(String allowedSourceIpCidr) {
|
|
this.allowedSourceIpCidr = allowedSourceIpCidr;
|
|
}
|
|
}
|