mirror of https://github.com/apache/cloudstack.git
CLOUDSTACK-6184: for userVm/ServiceOffering/StoragePool details set display=true by default in the VO objects
This commit is contained in:
parent
b8c4ed435a
commit
531a4ecc45
|
|
@ -43,7 +43,7 @@ public class ServiceOfferingDetailsVO implements ResourceDetail {
|
|||
private String value;
|
||||
|
||||
@Column(name="display")
|
||||
boolean display;
|
||||
boolean display = true;
|
||||
|
||||
protected ServiceOfferingDetailsVO() {
|
||||
}
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ public class UserVmDetailVO implements ResourceDetail {
|
|||
private String value;
|
||||
|
||||
@Column(name="display")
|
||||
private boolean display;
|
||||
private boolean display = true;
|
||||
|
||||
public UserVmDetailVO() {}
|
||||
|
||||
|
|
|
|||
|
|
@ -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) {
|
||||
this.resourceId = poolId;
|
||||
|
|
|
|||
Loading…
Reference in New Issue