Moti Asayag has uploaded a new change for review. Change subject: engine: Remove default modifier from CommandsCache ......................................................................
engine: Remove default modifier from CommandsCache Change-Id: I3f632b0a6a75f21f4da4407716c73abe431cdf05 Signed-off-by: Moti Asayag <[email protected]> --- M backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/tasks/CommandsCache.java 1 file changed, 11 insertions(+), 11 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/63/38563/1 diff --git a/backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/tasks/CommandsCache.java b/backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/tasks/CommandsCache.java index a3a1a8c..2a21e94 100644 --- a/backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/tasks/CommandsCache.java +++ b/backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/tasks/CommandsCache.java @@ -1,30 +1,30 @@ package org.ovirt.engine.core.bll.tasks; +import java.util.List; +import java.util.Set; + import org.ovirt.engine.core.common.businessentities.CommandEntity; import org.ovirt.engine.core.compat.CommandStatus; import org.ovirt.engine.core.compat.DateTime; import org.ovirt.engine.core.compat.Guid; -import java.util.List; -import java.util.Set; - public interface CommandsCache { - public CommandEntity get(Guid commandId); + CommandEntity get(Guid commandId); - public Set<Guid> keySet(); + Set<Guid> keySet(); - public void remove(Guid commandId); + void remove(Guid commandId); - public void put(CommandEntity cmdEntity); + void put(CommandEntity cmdEntity); - public void removeAllCommandsBeforeDate(DateTime cutoff); + void removeAllCommandsBeforeDate(DateTime cutoff); - public void updateCommandStatus(Guid commandId, CommandStatus status); + void updateCommandStatus(Guid commandId, CommandStatus status); - public void updateCommandExecuted(Guid commandId); + void updateCommandExecuted(Guid commandId); - public void updateCallbackNotified(Guid commandId); + void updateCallbackNotified(Guid commandId); List<CommandEntity> getChildCmdsByParentCmdId(Guid cmdId); } -- To view, visit https://gerrit.ovirt.org/38563 To unsubscribe, visit https://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I3f632b0a6a75f21f4da4407716c73abe431cdf05 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
