mirror of https://github.com/apache/cloudstack.git
CLOUDSTACK-6184: set display=true by default for all resource details
This commit is contained in:
parent
9b26ca20fc
commit
93d2c8c3ed
|
|
@ -43,7 +43,7 @@ public class DataCenterDetailVO implements ResourceDetail {
|
|||
private String value;
|
||||
|
||||
@Column(name = "display")
|
||||
private boolean display;
|
||||
private boolean display = true;
|
||||
|
||||
protected DataCenterDetailVO() {
|
||||
}
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ public class NetworkDetailVO implements ResourceDetail {
|
|||
private String value;
|
||||
|
||||
@Column(name = "display")
|
||||
private boolean display;
|
||||
private boolean display = true;
|
||||
|
||||
public NetworkDetailVO() {
|
||||
}
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ public class ServiceOfferingDetailsVO implements ResourceDetail {
|
|||
private String value;
|
||||
|
||||
@Column(name = "display")
|
||||
boolean display;
|
||||
private boolean display = true;
|
||||
|
||||
protected ServiceOfferingDetailsVO() {
|
||||
}
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ public class VMTemplateDetailVO implements ResourceDetail {
|
|||
private String value;
|
||||
|
||||
@Column(name = "display")
|
||||
private boolean display;
|
||||
private boolean display = true;
|
||||
|
||||
public VMTemplateDetailVO() {
|
||||
}
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ public class VolumeDetailVO implements ResourceDetail {
|
|||
private String value;
|
||||
|
||||
@Column(name = "display")
|
||||
private boolean display;
|
||||
private boolean display = true;
|
||||
|
||||
public VolumeDetailVO() {
|
||||
}
|
||||
|
|
|
|||
|
|
@ -45,7 +45,7 @@ public class SnapshotDetailsVO implements ResourceDetail {
|
|||
String value;
|
||||
|
||||
@Column(name = "display")
|
||||
private boolean display;
|
||||
private boolean display = true;
|
||||
|
||||
public SnapshotDetailsVO() {
|
||||
}
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ public class NicDetailVO implements ResourceDetail {
|
|||
private String value;
|
||||
|
||||
@Column(name = "display")
|
||||
private boolean display;
|
||||
private boolean display = true;
|
||||
|
||||
public NicDetailVO() {
|
||||
}
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ public class UserVmDetailVO implements ResourceDetail {
|
|||
private String value;
|
||||
|
||||
@Column(name = "display")
|
||||
private boolean display;
|
||||
private boolean display = true;
|
||||
|
||||
public UserVmDetailVO() {
|
||||
}
|
||||
|
|
|
|||
|
|
@ -45,7 +45,7 @@ public class VMSnapshotDetailsVO implements ResourceDetail {
|
|||
String value;
|
||||
|
||||
@Column(name = "display")
|
||||
private boolean display;
|
||||
private boolean display = true;
|
||||
|
||||
public VMSnapshotDetailsVO() {
|
||||
}
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ public class AutoScaleVmGroupDetailVO implements ResourceDetail {
|
|||
private String value;
|
||||
|
||||
@Column(name = "display")
|
||||
private boolean display;
|
||||
private boolean display = true;
|
||||
|
||||
public AutoScaleVmGroupDetailVO() {
|
||||
}
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ public class AutoScaleVmProfileDetailVO implements ResourceDetail {
|
|||
private String value;
|
||||
|
||||
@Column(name = "display")
|
||||
private boolean display;
|
||||
private boolean display = true;
|
||||
|
||||
public AutoScaleVmProfileDetailVO() {
|
||||
}
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ public class FirewallRuleDetailVO implements ResourceDetail {
|
|||
private String value;
|
||||
|
||||
@Column(name = "display")
|
||||
private boolean display;
|
||||
private boolean display = true;
|
||||
|
||||
public FirewallRuleDetailVO() {
|
||||
}
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ public class NetworkACLItemDetailVO implements ResourceDetail {
|
|||
private String value;
|
||||
|
||||
@Column(name = "display")
|
||||
private boolean display;
|
||||
private boolean display = true;
|
||||
|
||||
public NetworkACLItemDetailVO() {
|
||||
}
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ public class NetworkACLListDetailVO implements ResourceDetail {
|
|||
private String value;
|
||||
|
||||
@Column(name = "display")
|
||||
private boolean display;
|
||||
private boolean display = true;
|
||||
|
||||
public NetworkACLListDetailVO() {
|
||||
}
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ public class RemoteAccessVpnDetailVO implements ResourceDetail {
|
|||
private String value;
|
||||
|
||||
@Column(name = "display")
|
||||
private boolean display;
|
||||
private boolean display = true;
|
||||
|
||||
public RemoteAccessVpnDetailVO() {
|
||||
}
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ public class Site2SiteCustomerGatewayDetailVO implements ResourceDetail {
|
|||
private String value;
|
||||
|
||||
@Column(name = "display")
|
||||
private boolean display;
|
||||
private boolean display = true;
|
||||
|
||||
public Site2SiteCustomerGatewayDetailVO() {
|
||||
}
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ public class Site2SiteVpnConnectionDetailVO implements ResourceDetail {
|
|||
private String value;
|
||||
|
||||
@Column(name = "display")
|
||||
private boolean display;
|
||||
private boolean display = true;
|
||||
|
||||
public Site2SiteVpnConnectionDetailVO() {
|
||||
}
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ public class Site2SiteVpnGatewayDetailVO implements ResourceDetail {
|
|||
private String value;
|
||||
|
||||
@Column(name = "display")
|
||||
private boolean display;
|
||||
private boolean display = true;
|
||||
|
||||
public Site2SiteVpnGatewayDetailVO() {
|
||||
}
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ public class UserDetailVO implements ResourceDetail {
|
|||
private String value;
|
||||
|
||||
@Column(name = "display")
|
||||
private boolean display;
|
||||
private boolean display = true;
|
||||
|
||||
public UserDetailVO() {
|
||||
}
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ public class UserIpAddressDetailVO implements ResourceDetail {
|
|||
private String value;
|
||||
|
||||
@Column(name = "display")
|
||||
private boolean display;
|
||||
private boolean display = true;
|
||||
|
||||
public UserIpAddressDetailVO() {
|
||||
}
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ public class VpcDetailVO implements ResourceDetail {
|
|||
private String value;
|
||||
|
||||
@Column(name = "display")
|
||||
private boolean display;
|
||||
private boolean display = true;
|
||||
|
||||
public VpcDetailVO() {
|
||||
}
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ public class VpcGatewayDetailVO implements ResourceDetail {
|
|||
private String value;
|
||||
|
||||
@Column(name = "display")
|
||||
private boolean display;
|
||||
private boolean display = true;
|
||||
|
||||
public VpcGatewayDetailVO() {
|
||||
}
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ public class PrimaryDataStoreDetailVO implements ResourceDetail {
|
|||
String value;
|
||||
|
||||
@Column(name = "display")
|
||||
private boolean display;
|
||||
private boolean display = true;
|
||||
|
||||
public PrimaryDataStoreDetailVO(long poolId, String name, String value, boolean display) {
|
||||
this.resourceId = poolId;
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ public class StoragePoolDetailVO implements ResourceDetail {
|
|||
String value;
|
||||
|
||||
@Column(name = "display")
|
||||
private boolean display;
|
||||
private boolean display = true;
|
||||
|
||||
public StoragePoolDetailVO(long poolId, String name, String value, boolean display) {
|
||||
this.resourceId = poolId;
|
||||
|
|
|
|||
Loading…
Reference in New Issue