![JAR search and dependency download from the Maven repository](/logo.png)
org.openstack4j.model.senlin.Receiver Maven / Gradle / Ivy
package org.openstack4j.model.senlin;
import org.openstack4j.model.ResourceEntity;
import java.util.ArrayList;
import java.util.Date;
import java.util.Map;
/**
* This interface describes the getter-methods (and thus components) of a Receiver.
* All getters map to the possible return values of
* GET /v1/receivers/{receiver_id}
*
* @see http://developer.openstack.org/api-ref-clustering-v1.html
*
* @author lion
*
*/
public interface Receiver extends ResourceEntity {
/**
* Returns the action of the receiver
*
* @return the action of the receiver
*/
String getAction();
/**
* Returns the cluster id of the receiver
*
* @return the cluster id of the receiver
*/
String getClusterID();
/**
* Returns the created at time of the receiver
*
* @return the created at time of the receiver
*/
Date getCreatedAt();
/**
* Returns the domain of the receiver
*
* @return the domain of the receiver
*/
String getDomain();
/**
* Returns the project of the receiver
*
* @return the project of the receiver
*/
String getProject();
/**
* Returns the type of the receiver
*
* @return the type of the receiver
*/
String getType();
/**
* Returns the updated at time of the receiver
*
* @return the updated at time of the receiver
*/
Date getUpdatedAt();
/**
* Returns the user of the receiver
*
* @return the user of the receiver
*/
String getUser();
/**
* Returns the actor of the receiver
*
* @return the actor of the receiver
*/
Map getActor();
/**
* Returns the channel of the receiver
*
* @return the channel of the receiver
*/
Map getChannel();
/**
* Returns the params of the receiver
*
* @return the params of the receiver
*/
Map getParams();
/**
* Returns the WebHook of the receiver
*
* @return the WebHook of the receiver
*/
String getWebHook();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy