org.openstack4j.model.identity.v3.Policy Maven / Gradle / Ivy
package org.openstack4j.model.identity.v3;
import java.util.Map;
import org.openstack4j.common.Buildable;
import org.openstack4j.model.ModelEntity;
import org.openstack4j.model.identity.builder.v3.PolicyBuilder;
/**
* policy model class
*
* @see API reference
*/
public interface Policy extends ModelEntity, Buildable {
/**
* the unique identifier
*
* @return the id of the policy
*/
String getId();
/**
* @return the type of the policy
*/
String getType();
/**
* @return the BLOB of the policy
*/
Map getBlob();
/**
* @return the links of the policy
*/
Map getLinks();
}