Moti Asayag has uploaded a new change for review. Change subject: engine: Generalize parameters type for GetAllMacPoolsQuery ......................................................................
engine: Generalize parameters type for GetAllMacPoolsQuery Change-Id: I76400cef7b5f680dd3eaa2872200b7f4dcdadeaa Signed-off-by: Moti Asayag <[email protected]> --- M backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/GetAllMacPoolsQuery.java 1 file changed, 2 insertions(+), 3 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/85/28985/1 diff --git a/backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/GetAllMacPoolsQuery.java b/backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/GetAllMacPoolsQuery.java index 4242af8..6c7c7f9 100644 --- a/backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/GetAllMacPoolsQuery.java +++ b/backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/GetAllMacPoolsQuery.java @@ -1,11 +1,10 @@ package org.ovirt.engine.core.bll; -import org.ovirt.engine.core.common.queries.IdQueryParameters; import org.ovirt.engine.core.common.queries.VdcQueryParametersBase; -public class GetAllMacPoolsQuery extends QueriesCommandBase<VdcQueryParametersBase> { +public class GetAllMacPoolsQuery<P extends VdcQueryParametersBase> extends QueriesCommandBase<P> { - public GetAllMacPoolsQuery(IdQueryParameters parameters) { + public GetAllMacPoolsQuery(P parameters) { super(parameters); } -- To view, visit http://gerrit.ovirt.org/28985 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I76400cef7b5f680dd3eaa2872200b7f4dcdadeaa Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: master Gerrit-Owner: Moti Asayag <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
