| 24 | import org.apache.cloudstack.api.response.SecurityGroupRuleResponse; |
| 25 | |
| 26 | public class UserVmData { |
| 27 | private Long id; |
| 28 | private String name; |
| 29 | private String uuid; |
| 30 | private String displayName; |
| 31 | private String ipAddress; |
| 32 | private String accountName; |
| 33 | private Long domainId; |
| 34 | private String domainName; |
| 35 | private Date created; |
| 36 | private String state; |
| 37 | private Boolean haEnable; |
| 38 | private Long groupId; |
| 39 | private String group; |
| 40 | private Long zoneId; |
| 41 | private String zoneName; |
| 42 | private Long hostId; |
| 43 | private String hostName; |
| 44 | private Long templateId; |
| 45 | private String templateName; |
| 46 | private String templateDisplayText; |
| 47 | private Boolean passwordEnabled; |
| 48 | private Long isoId; |
| 49 | private String isoName; |
| 50 | private String isoDisplayText; |
| 51 | private Long serviceOfferingId; |
| 52 | private String serviceOfferingName; |
| 53 | private Boolean forVirtualNetwork; |
| 54 | private Integer cpuNumber; |
| 55 | private Integer cpuSpeed; |
| 56 | private Integer memory; |
| 57 | private String cpuUsed; |
| 58 | private Long networkKbsRead; |
| 59 | private Long networkKbsWrite; |
| 60 | private Long diskKbsRead; |
| 61 | private Long diskKbsWrite; |
| 62 | private Long diskIORead; |
| 63 | private Long diskIOWrite; |
| 64 | private Long guestOsId; |
| 65 | private Long rootDeviceId; |
| 66 | private String rootDeviceType; |
| 67 | private Set<SecurityGroupData> securityGroupList; |
| 68 | private String password; |
| 69 | private Long jobId; |
| 70 | private Integer jobStatus; |
| 71 | private Set<NicData> nics; |
| 72 | private String hypervisor; |
| 73 | private long accountId; |
| 74 | private Long publicIpId; |
| 75 | private String publicIp; |
| 76 | private String instanceName; |
| 77 | private String sshPublicKey; |
| 78 | |
| 79 | private boolean initialized; |
| 80 | |
| 81 | public UserVmData() { |
| 82 | securityGroupList = new HashSet<SecurityGroupData>(); |
| 83 | nics = new HashSet<NicData>(); |
nothing calls this directly
no outgoing calls
no test coverage detected