Package me.datafox.dfxengine.handles
Class HandleManagerImpl
java.lang.Object
me.datafox.dfxengine.handles.HandleManagerImpl
- All Implemented Interfaces:
HandleManager
Implementation of
HandleManager
.-
Constructor Summary
ConstructorsConstructorDescriptionHandleManagerImpl
(org.slf4j.Logger logger, HandleManagerConfiguration configuration) -
Method Summary
Modifier and TypeMethodDescriptioncreateSpace
(String id) Creates aSpace
with the specified id if it does not already exist and returns the space with that id.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface me.datafox.dfxengine.handles.api.HandleManager
getSpaceSpace, getTagSpace
-
Constructor Details
-
HandleManagerImpl
- Parameters:
logger
-Logger
for the handle managerconfiguration
-HandleManagerConfiguration
for the handle manager
-
-
Method Details
-
getSpaces
- Specified by:
getSpaces
in interfaceHandleManager
- Returns:
- unmodifiable
HandleMap
containing allSpaces
managed by this handle manager
-
createSpace
- Specified by:
createSpace
in interfaceHandleManager
- Parameters:
id
-String
id for the newSpace
- Returns:
- created
Space
- Throws:
NullPointerException
- if the id isnull
IllegalArgumentException
- if the id is empty, blank, contains non-ASCII or non-printable characters or the colon (:
), or if aSpace
with the given id already exists
-
getOrCreateSpace
Creates aSpace
with the specified id if it does not already exist and returns the space with that id.- Specified by:
getOrCreateSpace
in interfaceHandleManager
- Parameters:
id
-String
id for theSpace
- Returns:
- created or pre-existing
Space
- Throws:
NullPointerException
- if the id isnull
IllegalArgumentException
- if the id is empty, blank, contains non-ASCII or non-printable characters or the colon (:
)
-