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

org.openstack4j.model.identity.v3.Role 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.RoleBuilder;

/**
 * identity v3 role model class
 * 
 * @see API reference
 */
public interface Role extends ModelEntity, Buildable {

    /**
     * Globally unique across all domains.
     * 
     * @return the id of the role
     */
    String getId();

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

    /**
     * @return the links of the role
     */
    Map getLinks();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy