Class PoolStatus
- java.lang.Object
-
- org.jclouds.openstack.neutron.v2.domain.lbaas.v1.PoolStatus
-
public class PoolStatus extends Object
A Neutron LBaaS v1 PoolStatus. Contains an id and status describing the pool's status.- See Also:
HealthMonitor.getPools()
-
-
Field Summary
Fields Modifier and Type Field Description protected String
id
protected LBaaSStatus
status
protected String
statusDescription
-
Constructor Summary
Constructors Modifier Constructor Description protected
PoolStatus(String id, LBaaSStatus status, String statusDescription)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
String
getId()
LBaaSStatus
getStatus()
String
getStatusDescription()
int
hashCode()
protected com.google.common.base.MoreObjects.ToStringHelper
string()
String
toString()
-
-
-
Field Detail
-
id
@Named("pool_id") protected final String id
-
status
protected final LBaaSStatus status
-
statusDescription
@Named("status_description") protected final String statusDescription
-
-
Constructor Detail
-
PoolStatus
@ConstructorProperties({"pool_id","status","status_description"}) protected PoolStatus(String id, LBaaSStatus status, String statusDescription)
-
-
Method Detail
-
getStatus
@Nullable public LBaaSStatus getStatus()
- Returns:
- the status of the PoolStatus.
-
getStatusDescription
@Nullable public String getStatusDescription()
- Returns:
- the status description of the PoolStatus.
-
string
protected com.google.common.base.MoreObjects.ToStringHelper string()
-
-