org.openstack4j.model.identity.v3.Service Maven / Gradle / Ivy
The 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 extends Endpoint> 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);
}