Package org.openstack4j.model.manila
Interface Service
-
- All Superinterfaces:
ModelEntity,Serializable
- All Known Implementing Classes:
ManilaService
public interface Service extends ModelEntity
Represents a Manila service and their binary.- Author:
- Daniel Gonzalez Nothnagel
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classService.Statestatic classService.Status
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetBinary()StringgetHost()IntegergetId()Service.StategetState()Service.StatusgetStatus()StringgetUpdatedAt()StringgetZone()
-
-
-
Method Detail
-
getId
Integer getId()
- Returns:
- the service ID
-
getStatus
Service.Status getStatus()
- Returns:
- the service status, which is
enabledordisabled
-
getBinary
String getBinary()
- Returns:
- the service binary name
-
getZone
String getZone()
- Returns:
- the availability zone
-
getHost
String getHost()
- Returns:
- the host name
-
getState
Service.State getState()
- Returns:
- the current state of the service
-
getUpdatedAt
String getUpdatedAt()
- Returns:
- the date and time stamp when the service was updated
-
-