Interface Service
-
- All Superinterfaces:
ModelEntity,Serializable
- All Known Implementing Classes:
ExtService
public interface Service extends ModelEntity
A Service represents a Nova compute service- Author:
- Stephan Latour
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classService.StateThe state of a Nova service entitystatic classService.StatusThe status of a Nova service entity
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetBinary()StringgetDisabledReason()StringgetForcedDown()StringgetHost()StringgetId()Service.StategetState()Service.StatusgetStatus()DategetUpdatedAt()StringgetZone()
-
-
-
Method Detail
-
getBinary
String getBinary()
- Returns:
- the binary for this service
-
getDisabledReason
String getDisabledReason()
- Returns:
- the reason for disabled status of this service
-
getHost
String getHost()
- Returns:
- the host for this service
-
getId
String getId()
- Returns:
- the id for this service
-
getState
Service.State getState()
- Returns:
- the status of the service
-
getStatus
Service.Status getStatus()
- Returns:
- the status of the service
-
getUpdatedAt
Date getUpdatedAt()
- Returns:
- last updated time
-
getZone
String getZone()
- Returns:
- the zone for this service
-
getForcedDown
String getForcedDown()
- Returns:
- Whether or not this service was forced down manually by an administrator
-
-