Interface LocalCommandDispatcherFactory
- All Superinterfaces:
CommandDispatcherFactory<LocalGroupMember>, GroupCommandDispatcherFactory<String, LocalGroupMember>
public interface LocalCommandDispatcherFactory
extends GroupCommandDispatcherFactory<String, LocalGroupMember>
Factory for creating a local command dispatcher.
- Author:
- Paul Ferraro
-
Method Summary
Modifier and TypeMethodDescriptiongetGroup()Returns the group upon which the this command dispatcher operates.of(LocalGroup group) Returns a local command dispatcher factory for the specified group.Methods inherited from interface CommandDispatcherFactory
createCommandDispatcher, createCommandDispatcher
-
Method Details
-
getGroup
LocalGroup getGroup()Description copied from interface:CommandDispatcherFactoryReturns the group upon which the this command dispatcher operates.- Specified by:
getGroupin interfaceCommandDispatcherFactory<LocalGroupMember>- Specified by:
getGroupin interfaceGroupCommandDispatcherFactory<String, LocalGroupMember>- Returns:
- the group associated with this command dispatcher factory.
-
of
Returns a local command dispatcher factory for the specified group.- Parameters:
group- a group- Returns:
- a local command dispatcher factory for the specified group.
-