Interface Endpoint
-
- All Superinterfaces:
Buildable<EndpointBuilder>,ModelEntity,Serializable
- All Known Implementing Classes:
KeystoneEndpoint
public interface Endpoint extends ModelEntity, Buildable<EndpointBuilder>
Endpoint model for identity v3.- See Also:
- API reference
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.openstack4j.common.Buildable
Buildable.Builder<T extends Buildable.Builder<T,M>,M extends Buildable<?>>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDescription()StringgetId()Globally unique identifier.FacinggetIface()Map<String,String>getLinks()StringgetName()StringgetRegion()StringgetRegionId()StringgetServiceId()StringgetType()URLgetUrl()booleanisEnabled()
-
-
-
Method Detail
-
getId
String getId()
Globally unique identifier.- Returns:
- the Id of the endpoint
-
getType
String getType()
- Returns:
- the type of the endpoint
-
getDescription
String getDescription()
- Returns:
- the Description of the endpoint
-
getIface
Facing getIface()
- Returns:
- the Interface of the endpoint
-
getServiceId
String getServiceId()
- Returns:
- the ServiceId of the endpoint
-
getName
String getName()
- Returns:
- the Name of the endpoint
-
getRegion
String getRegion()
- Returns:
- the Region of the endpoint
-
getRegionId
String getRegionId()
- Returns:
- the region identifier of the endpoint
-
getUrl
URL getUrl()
- Returns:
- the URL of the endpoint
-
isEnabled
boolean isEnabled()
- Returns:
- true if the endpoint is enabled, otherwise false
-
-