CLOUDSTACK-6184: for userVm/ServiceOffering/StoragePool details set display=true by default in the VO objects

This commit is contained in:
Alena Prokharchyk 2014-02-27 10:47:38 -08:00
parent b8c4ed435a
commit 531a4ecc45
3 changed files with 3 additions and 3 deletions

View File

@ -43,7 +43,7 @@ public class ServiceOfferingDetailsVO implements ResourceDetail {
private String value;
@Column(name="display")
boolean display;
boolean display = true;
protected ServiceOfferingDetailsVO() {
}

View File

@ -43,7 +43,7 @@ public class UserVmDetailVO implements ResourceDetail {
private String value;
@Column(name="display")
private boolean display;
private boolean display = true;
public UserVmDetailVO() {}

View File

@ -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;