Interface ServiceInfo
-
- All Superinterfaces:
ModelEntity,Serializable
- All Known Implementing Classes:
MuranoServiceInfo
public interface ServiceInfo extends ModelEntity
- Author:
- Nikolay Mahotkin.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<? extends ActionInfo>getActions()StringgetId()StringgetName()StringgetStatus()StringgetType()
-
-
-
Method Detail
-
getId
String getId()
- Returns:
- service id.
-
getName
String getName()
- Returns:
- service name.
-
getType
String getType()
- Returns:
- service type(class) name.
-
getActions
List<? extends ActionInfo> getActions()
- Returns:
- action list for current service (if available).
-
getStatus
String getStatus()
- Returns:
- service status.
-
-