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

org.openstack4j.model.senlin.BuildInfo Maven / Gradle / Ivy

There is a newer version: 3.2.0
Show newest version
package org.openstack4j.model.senlin;

import org.openstack4j.model.ModelEntity;

import java.util.Map;

/**
 * This interface describes the getter-methods (and thus components) of a BuildInfo.
 * All getters map to the possible return values of
 *  GET /v1/build-info
 * 
 * @see http://developer.openstack.org/api-ref-clustering-v1.html
 * 
 * @author lion
 * 
 */
public interface BuildInfo extends ModelEntity {

    /**
     * Returns the api of the build info
     *
     * @return the api of the build info
     */
    Map getApi();

    /**
     * Returns the engine of the build info
     *
     * @return the engine of the build info
     */
    Map getEngine();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy