public interface ObjectService
Modifier and Type | Method and Description |
---|---|
boolean |
contains(String id)
Checks if exists an Object with the given ID.
|
ObjectInfo |
find(String id)
Retrieves the Object with the given ID.
|
Set<String> |
getIds()
Gets a set of all IDs.
|
String |
register(Object object,
String createdBy)
Registers an Object if it does not exist yet.
|
boolean |
remove(String id)
Removes an Object with the given ID.
|
String register(Object object, String createdBy)
object
- the Object to be registered.createdBy
- information about where the object is createdboolean remove(String id)
id
- ObjectInfo find(String id)
id
- boolean contains(String id)
id
- Copyright © 2014–2022 ImageJ. All rights reserved.