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

org.openstack4j.model.identity.v3.Policy Maven / Gradle / Ivy

There is a newer version: 3.2.0
Show newest version
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();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy