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

org.openstack4j.model.identity.Role Maven / Gradle / Ivy

package org.openstack4j.model.identity;

import org.openstack4j.common.Buildable;
import org.openstack4j.model.ModelEntity;
import org.openstack4j.model.identity.builder.RoleBuilder;

/**
 * A permission scheme a user is assigned when performing specific operations.  A role includes a set of rights and previleges. Any user who is assigned
 * the role inherits these traits.
 * 
 * @author Jeremy Unruh
 */
public interface Role extends ModelEntity, Buildable {

	/**
	 * @return the id of the role
	 */
	String getId();
	
	/**
	 * @return the name of the role
	 */
	String getName();
	
	 /**
   * @return the service id of the role or null, if not present
   */
   String getServiceId();
   
   /**
    * @return the tenant id of the role or null, if not present
    */
   String getTenantId();
	
	/**
	 * @return the description of the role
	 */
	String getDescription();
	
	/**
	 * @return true if the role is enabled
	 */
	boolean isEnabled();
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy