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

org.openstack4j.model.identity.v3.Domain 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.DomainBuilder;

/**
 * Domain model.
 * 
 * @see API reference
 */
public interface Domain extends ModelEntity, Buildable {

    /**
     * Globally unique domain identifier across all domains.
     *
     * @return the Id of the domain
     */
    String getId();

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

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

    /**
     * @return the Links of the domain
     */
    Map getLinks();

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy