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

org.openstack4j.model.compute.InstanceAction Maven / Gradle / Ivy

There is a newer version: 3.12
Show newest version
package org.openstack4j.model.compute;

import java.util.Date;

/**
 * An action executed on an instance
 * 
 * @author Christian Banse
 */
public interface InstanceAction {

    /**
     * @return the action
     */
    String getAction();

    /**
     * @return the instance uuid
     */
    String getInstanceUuid();

    /**
     * @return the message
     */
    String getMessage();

    /**
     * @return the project id
     */
    String getProjectId();

    /**
     * @return the request id
     */
    String getRequestId();

    /**
     * @return the start time
     */
    Date getStartTime();

    /**
     * @return the user id
     */
    String getUserId();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy