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

org.openstack4j.model.identity.v3.Project 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.ProjectBuilder;

/**
 * Project Model class use to group/isolate resources and/or identity objects
 * 
 * @see API reference
 */
public interface Project extends ModelEntity, Buildable {

    /**
     * Globally unique within the owning domain.
     *
     * @return the Id of the project
     */
    String getId();

    /**
     * @return the DomainId of the project
     */
    String getDomainId();

    /**
     * 
     * @return the domain
     */
    Domain getDomain();

    /**
     * @return the Description of the project
     */
    String getDescription();

    /**
     * 
     * @return the Name of the project
     */
    String getName();

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

    /**
     * 
     * @return the parentId of the project
     */
    String getParentId();

    /**
     * 
     * @return the subtree of the project
     */
    String getSubtree();

    /**
     * 
     * @return the parents of the project
     */
    String getParents();

    /**
     * 
     * @return if the project is enabled
     */
    boolean isEnabled();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy