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

(cherry picked from commit 531a4ecc45)

Signed-off-by: Animesh Chaturvedi <animesh@apache.org>
This commit is contained in:
Alena Prokharchyk 2014-02-27 10:47:38 -08:00 committed by Animesh Chaturvedi
parent a8a36de4c8
commit 2457a92599
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;