Class HeatEvent
- java.lang.Object
-
- org.openstack4j.openstack.heat.domain.HeatEvent
-
- All Implemented Interfaces:
Serializable,Event,ModelEntity
public class HeatEvent extends Object implements Event
This is a model of a heatevent. It uses Jackson annotations for (de)serialization into JSON format- Author:
- Octopus Zhang
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classHeatEvent.EventsAn inner class for representing lists of Heat Resource
-
Constructor Summary
Constructors Constructor Description HeatEvent()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetId()Returns the id of the eventList<? extends Link>getLinks()Returns the links of the eventStringgetLocalReourceId()Returns the logical_resource_id of the eventStringgetPhysicalResourceId()Returns the physical_resource_id of the eventStringgetReason()Returns the resource_status_reason of the eventStringgetResourceName()Returns the resource_name of the eventObjectgetResourceProperties()Returns the resource properties of the eventStringgetResourceStatus()Returns the resource_status of the eventStringgetResourceType()Returns the resource type of the eventDategetTime()Returns the event_time of the event
-
-
-
Method Detail
-
getResourceName
public String getResourceName()
Description copied from interface:EventReturns the resource_name of the event- Specified by:
getResourceNamein interfaceEvent- Returns:
- the resource_name of the event
-
getTime
public Date getTime()
Description copied from interface:EventReturns the event_time of the event
-
getLocalReourceId
public String getLocalReourceId()
Description copied from interface:EventReturns the logical_resource_id of the event- Specified by:
getLocalReourceIdin interfaceEvent- Returns:
- the logical_resource_id of the event
-
getReason
public String getReason()
Description copied from interface:EventReturns the resource_status_reason of the event
-
getResourceStatus
public String getResourceStatus()
Description copied from interface:EventReturns the resource_status of the event- Specified by:
getResourceStatusin interfaceEvent- Returns:
- the resource_status of the event
-
getPhysicalResourceId
public String getPhysicalResourceId()
Description copied from interface:EventReturns the physical_resource_id of the event- Specified by:
getPhysicalResourceIdin interfaceEvent- Returns:
- the physical_resource_id of the event
-
getLinks
public List<? extends Link> getLinks()
Description copied from interface:EventReturns the links of the event
-
getResourceType
public String getResourceType()
Description copied from interface:EventReturns the resource type of the event- Specified by:
getResourceTypein interfaceEvent- Returns:
- the resource type of the event
-
getResourceProperties
public Object getResourceProperties()
Description copied from interface:EventReturns the resource properties of the event- Specified by:
getResourcePropertiesin interfaceEvent- Returns:
- the resource properties of the event
-
-