Package org.openstack4j.model.senlin
Interface Receiver
-
- All Superinterfaces:
ModelEntity,ResourceEntity,Serializable
- All Known Implementing Classes:
SenlinReceiver
public interface Receiver extends ResourceEntity
This interface describes the getter-methods (and thus components) of a Receiver. All getters map to the possible return values ofGET /v1/receivers/{receiver_id}- Author:
- lion
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetAction()Returns the action of the receiverMap<String,Object>getActor()Returns the actor of the receiverMap<String,Object>getChannel()Returns the channel of the receiverStringgetClusterID()Returns the cluster id of the receiverDategetCreatedAt()Returns the created at time of the receiverStringgetDomain()Returns the domain of the receiverMap<String,Object>getParams()Returns the params of the receiverStringgetProject()Returns the project of the receiverStringgetType()Returns the type of the receiverDategetUpdatedAt()Returns the updated at time of the receiverStringgetUser()Returns the user of the receiverStringgetWebHook()Returns the WebHook of the receiver-
Methods inherited from interface org.openstack4j.model.ResourceEntity
getId, getName
-
-
-
-
Method Detail
-
getAction
String getAction()
Returns the action of the receiver- Returns:
- the action of the receiver
-
getClusterID
String getClusterID()
Returns the cluster id of the receiver- Returns:
- the cluster id of the receiver
-
getCreatedAt
Date getCreatedAt()
Returns the created at time of the receiver- Returns:
- the created at time of the receiver
-
getDomain
String getDomain()
Returns the domain of the receiver- Returns:
- the domain of the receiver
-
getProject
String getProject()
Returns the project of the receiver- Returns:
- the project of the receiver
-
getType
String getType()
Returns the type of the receiver- Returns:
- the type of the receiver
-
getUpdatedAt
Date getUpdatedAt()
Returns the updated at time of the receiver- Returns:
- the updated at time of the receiver
-
getUser
String getUser()
Returns the user of the receiver- Returns:
- the user of the receiver
-
getActor
Map<String,Object> getActor()
Returns the actor of the receiver- Returns:
- the actor of the receiver
-
getChannel
Map<String,Object> getChannel()
Returns the channel of the receiver- Returns:
- the channel of the receiver
-
getParams
Map<String,Object> getParams()
Returns the params of the receiver- Returns:
- the params of the receiver
-
getWebHook
String getWebHook()
Returns the WebHook of the receiver- Returns:
- the WebHook of the receiver
-
-