Package me.datafox.dfxengine.handles.api
Interface HandleManager
- All Known Implementing Classes:
HandleManagerImpl
public interface HandleManager
-
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.
-
Method Details
-
getSpaceSpace
Space getSpaceSpace() -
getTagSpace
Space getTagSpace() -
getSpaces
-
createSpace
- 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.- 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 (:
)
-