Class Endpoint
- java.lang.Object
-
- com.woorea.openstack.keystone.model.Endpoint
-
- All Implemented Interfaces:
Serializable
public class Endpoint extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Endpoint()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAdminURL()StringgetId()StringgetInternalURL()StringgetPublicURL()StringgetRegion()StringgetServiceId()voidsetAdminURL(String adminURL)voidsetId(String id)voidsetInternalURL(String internalURL)voidsetPublicURL(String publicURL)voidsetRegion(String region)voidsetServiceId(String serviceId)StringtoString()
-
-
-
Method Detail
-
getId
public String getId()
- Returns:
- the id
-
setId
public void setId(String id)
- Parameters:
id- the id to set
-
getServiceId
public String getServiceId()
- Returns:
- the serviceId
-
setServiceId
public void setServiceId(String serviceId)
- Parameters:
serviceId- the serviceId to set
-
getRegion
public String getRegion()
- Returns:
- the region
-
setRegion
public void setRegion(String region)
- Parameters:
region- the region to set
-
getPublicURL
public String getPublicURL()
- Returns:
- the publicURL
-
setPublicURL
public void setPublicURL(String publicURL)
- Parameters:
publicURL- the publicURL to set
-
getInternalURL
public String getInternalURL()
- Returns:
- the internalURL
-
setInternalURL
public void setInternalURL(String internalURL)
- Parameters:
internalURL- the internalURL to set
-
getAdminURL
public String getAdminURL()
- Returns:
- the adminURL
-
setAdminURL
public void setAdminURL(String adminURL)
- Parameters:
adminURL- the adminURL to set
-
-