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

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

There is a newer version: 3.2.0
Show newest version
package org.openstack4j.model.identity.v3;

import java.util.List;
import java.util.Map;

import org.openstack4j.common.Buildable;
import org.openstack4j.model.ModelEntity;
import org.openstack4j.model.identity.v3.builder.ServiceBuilder;

/**
 * Identity V3 Service model
 *
 * @see  API reference
 */
public interface Service extends ModelEntity, Buildable, Comparable {

    /**
     * @return the version of the service
     */
    Integer getVersion();

    /**
     * @return the id of the service
     */
    String getId();

    /**
     * @return the description of the service
     */
    String getDescription();

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

    /**
     * @return the type of the service
     */
    String getType();

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

    /**
     * @return the list of endpoints
     */
    List getEndpoints();

    /**
     * @return the enabled status of the service
     */
    boolean isEnabled();

    /**
     * sets the enabled status of the service
     *
     * @param enabled the enabled
     */
    void setEnabled(Boolean enabled);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy