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

org.openstack4j.model.senlin.PolicyType 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 PolicyType.
 * All getters map to the possible return values of
 *  GET /v1/policy-types/​{policy_type}​
 * 
 * @see http://developer.openstack.org/api-ref-clustering-v1.html
 * 
 * @author lion
 * 
 */
public interface PolicyType extends ModelEntity {

	/**
	 * Returns the name of the PolicyType
	 * 
	 * @return the name of the PolicyType
	 */
	String getName();

	/**
	 * Returns the schema of the PolicyType
	 *
	 * @return the schema of the PolicyType
	 */
	Map getSchema();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy