Allon Mureinik has uploaded a new change for review. Change subject: core: Removed unused RepoImage members ......................................................................
core: Removed unused RepoImage members Removed the unused storagePoolStatus, StorageDomainStatus and vdsStatus members (along with their getters and setters) from RepoImage. Change-Id: Ie1d2c02df37b7c21568f73e65c0fed875f249f79 Signed-off-by: Allon Mureinik <[email protected]> --- M backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/businessentities/RepoImage.java 1 file changed, 0 insertions(+), 48 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/96/21996/1 diff --git a/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/businessentities/RepoImage.java b/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/businessentities/RepoImage.java index 6c3f47f..87e72a7 100644 --- a/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/businessentities/RepoImage.java +++ b/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/businessentities/RepoImage.java @@ -11,10 +11,7 @@ public class RepoImage extends IVdcQueryable implements Serializable { private static final long serialVersionUID = 566928138057530047L; private Guid storagePoolId; - private StoragePoolStatus storagePoolStatus; - private VDSStatus vdsStatus; private Guid repoDomainId; - private StorageDomainStatus storageDomainStatus; private String repoImageId; private String repoImageName; private long size; @@ -48,36 +45,6 @@ } /** - * @param storagePoolStatus - * the storage pool id to set - */ - public void setStoragePoolStatus(StoragePoolStatus storagePoolStatus) { - this.storagePoolStatus = storagePoolStatus; - } - - /** - * @return the storagePoolStatus - */ - public StoragePoolStatus getStoragePoolStatus() { - return storagePoolStatus; - } - - /** - * @param vdsStatus - * the vds status to set - */ - public void setVdsStatus(VDSStatus vdsStatus) { - this.vdsStatus = vdsStatus; - } - - /** - * @return the vds status. - */ - public VDSStatus getVdsStatus() { - return vdsStatus; - } - - /** * @param repoDomainId * the repository domain Id to set. */ @@ -90,21 +57,6 @@ */ public Guid getRepoDomainId() { return repoDomainId; - } - - /** - * @param storageDomainStatus - * the storage domain status to set - */ - public void setStorageDomainStatus(StorageDomainStatus storageDomainStatus) { - this.storageDomainStatus = storageDomainStatus; - } - - /** - * @return the storage domain status. - */ - public StorageDomainStatus getStorageDomainStatus() { - return storageDomainStatus; } /** -- To view, visit http://gerrit.ovirt.org/21996 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Ie1d2c02df37b7c21568f73e65c0fed875f249f79 Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: master Gerrit-Owner: Allon Mureinik <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
