Martin Peřina has uploaded a new change for review. Change subject: core: Include VdsSpmIdMapDAODbFacadeImpl.get(vdsId) in VdsSpmIdMapDAO ......................................................................
core: Include VdsSpmIdMapDAODbFacadeImpl.get(vdsId) in VdsSpmIdMapDAO Adds method VdsSpmIdMapDAODbFacadeImpl.get(vdsId) in VdsSpmIdMapDAO so it can be used in engine. Change-Id: Ic590281545123788ce62c740901c69de0ed00c33 Bug-Url: https://bugzilla.redhat.com/1090799 Signed-off-by: Martin Perina <[email protected]> --- M backend/manager/modules/dal/src/main/java/org/ovirt/engine/core/dao/VdsSpmIdMapDAO.java 1 file changed, 8 insertions(+), 0 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/36/31236/1 diff --git a/backend/manager/modules/dal/src/main/java/org/ovirt/engine/core/dao/VdsSpmIdMapDAO.java b/backend/manager/modules/dal/src/main/java/org/ovirt/engine/core/dao/VdsSpmIdMapDAO.java index 7423ccb..fc08a97 100644 --- a/backend/manager/modules/dal/src/main/java/org/ovirt/engine/core/dao/VdsSpmIdMapDAO.java +++ b/backend/manager/modules/dal/src/main/java/org/ovirt/engine/core/dao/VdsSpmIdMapDAO.java @@ -10,6 +10,14 @@ */ public interface VdsSpmIdMapDAO extends GenericDao<vds_spm_id_map, Guid> { /** + * Gets the map for a given vds id + * + * @param vdsId vds id + * @return vds_spm_id_map + */ + vds_spm_id_map get(Guid vdsId); + + /** * Gets the map for a given storage pool and vds id * * @param storagePoolId storage pool id -- To view, visit http://gerrit.ovirt.org/31236 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Ic590281545123788ce62c740901c69de0ed00c33 Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: ovirt-engine-3.5 Gerrit-Owner: Martin Peřina <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
