Interface EntityService
-
- All Known Implementing Classes:
MemoryEntityService
public interface EntityServiceA service which provides access to business-specific entities.- Author:
- mpolden
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Optional<NodeEntity>findNode(String hostname)List<NodeEntity>listNodes()List all nodes owned by this system's propertyMap<PropertyId,Property>listProperties()List all properties known by the service
-
-
-
Method Detail
-
listProperties
Map<PropertyId,Property> listProperties()
List all properties known by the service
-
listNodes
List<NodeEntity> listNodes()
List all nodes owned by this system's property
-
findNode
Optional<NodeEntity> findNode(String hostname)
-
-