Interface ChannelManagerDocumentUpdateService
public interface ChannelManagerDocumentUpdateService
This class:
- Stores
ChannelManagerCommand
's - Issues request by calling
ChannelManagerCommand.execute(Session)
-
Method Summary
Modifier and TypeMethodDescriptionvoid
removeCommand
(String identifier, CmsSessionContext cmsSessionContext) Removes the command for the current user session.void
storeCommand
(String identifier, CmsSessionContext cmsSessionContext, ChannelManagerCommand command) Stores command for the the current user sessionvoid
update
(CmsSessionContext cmsSessionContext, Session session) Issues request by callingChannelManagerCommand.execute(Session)
on all stored commands.
-
Method Details
-
update
Issues request by callingChannelManagerCommand.execute(Session)
on all stored commands.The commands are stored per user session
- Parameters:
cmsSessionContext
- the place where the commands are stored per user sessionsession
- the session the command should be executed on
-
removeCommand
Removes the command for the current user session.- Parameters:
identifier
- Identifier of the object the command executed oncmsSessionContext
- TheCmsSessionContext
where the command is stored.
-
storeCommand
void storeCommand(String identifier, CmsSessionContext cmsSessionContext, ChannelManagerCommand command) Stores command for the the current user session- Parameters:
identifier
- Identifier of the object the command executed oncmsSessionContext
- TheCmsSessionContext
where the command is stored.command
- The command to be added
-