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

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

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.builder.v3.ServiceBuilder;

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

    /**
     * @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 list of endpoints
     */
    List getEndpoints();

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy