Package org.openstack4j.model.senlin
Interface Event
-
- All Superinterfaces:
ModelEntity,Serializable
- All Known Implementing Classes:
SenlinEvent
public interface Event extends ModelEntity
This interface describes the getter-methods (and thus components) of a Event. All getters map to the possible return values ofGET /v1/events/{event_id}- Author:
- lion
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetAction()Returns the action of the EventStringgetClusterID()Returns the cluster id of the EventStringgetId()Returns the id of the EventIntegergetLevel()Returns the level of the EventStringgetObjID()Returns the obj id of the EventStringgetObjName()Returns the obj name of the EventStringgetObjType()Returns the obj type of the EventStringgetProject()Returns the project of the EventStringgetStatus()Returns the status of the EventStringgetStatusReason()Returns the status reason of the EventDategetTimestamp()Returns the timestamp of the EventStringgetUser()Returns the user of the Event
-
-
-
Method Detail
-
getId
String getId()
Returns the id of the Event- Returns:
- the id of the Event
-
getAction
String getAction()
Returns the action of the Event- Returns:
- the action of the Event
-
getClusterID
String getClusterID()
Returns the cluster id of the Event- Returns:
- the cluster id of the Event
-
getLevel
Integer getLevel()
Returns the level of the Event- Returns:
- the level of the Event
-
getObjID
String getObjID()
Returns the obj id of the Event- Returns:
- the obj id of the Event
-
getObjName
String getObjName()
Returns the obj name of the Event- Returns:
- the obj name of the Event
-
getObjType
String getObjType()
Returns the obj type of the Event- Returns:
- the obj type of the Event
-
getProject
String getProject()
Returns the project of the Event- Returns:
- the project of the Event
-
getStatus
String getStatus()
Returns the status of the Event- Returns:
- the status of the Event
-
getStatusReason
String getStatusReason()
Returns the status reason of the Event- Returns:
- the status reason of the Event
-
getTimestamp
Date getTimestamp()
Returns the timestamp of the Event- Returns:
- the timestamp of the Event
-
getUser
String getUser()
Returns the user of the Event- Returns:
- the user of the Event
-
-