All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openstack4j.api.senlin.SenlinEventService Maven / Gradle / Ivy

The newest version!
package org.openstack4j.api.senlin;

import org.openstack4j.model.senlin.Event;

import java.util.List;

/**
 * This interface defines all methods for the manipulation of Event
 * 
 * @author lion
 * 
 */
public interface SenlinEventService {
	
	/**
	 * Gets a list of currently existing {@link Event}s.
	 * 
	 * @return the list of {@link Event}s
	 */
	List list();

	/**
	 * returns details of a {@link Event}.
	 *
	 * @param eventID
	 *            Id of {@link Event}
	 * @return Event
	 */
	Event get(String eventID);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy