mirror of https://github.com/apache/cloudstack.git
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:
parent
a8a36de4c8
commit
2457a92599
|
|
@ -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