Gemfire JavaDocs
Package org.apache.geode.management.api
Class ClusterManagementListResult<T extends AbstractConfiguration<R>,R extends RuntimeInfo>
- java.lang.Object
-
- org.apache.geode.management.api.ClusterManagementResult
-
- org.apache.geode.management.api.ClusterManagementListResult<T,R>
-
- Type Parameters:
T
- the type of the static config, e.g. RegionConfigR
- the type of the corresponding runtime information, e.g. RuntimeRegionInfo
@Experimental public class ClusterManagementListResult<T extends AbstractConfiguration<R>,R extends RuntimeInfo> extends ClusterManagementResult
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.apache.geode.management.api.ClusterManagementResult
ClusterManagementResult.StatusCode
-
-
Constructor Summary
Constructors Constructor Description ClusterManagementListResult()
ClusterManagementListResult(ClusterManagementResult.StatusCode statusCode, java.lang.String message)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addEntityInfo(EntityInfo<T,R> entityInfo)
java.util.List<T>
getConfigResult()
Returns only the static config portion of the resultsjava.util.List<EntityGroupInfo<T,R>>
getEntityGroupInfo()
Returns the combined payload of the list calljava.util.List<EntityInfo<T,R>>
getResult()
java.util.List<R>
getRuntimeResult()
Returns only the runtime information portion of the resultsvoid
setEntityGroupInfo(java.util.List<EntityGroupInfo<T,R>> entityGroupInfos)
void
setResult(java.util.List<EntityInfo<T,R>> entities)
-
Methods inherited from class org.apache.geode.management.api.ClusterManagementResult
equals, getStatusCode, getStatusMessage, hashCode, isSuccessful, setLinks, setStatus, toString
-
-
-
-
Constructor Detail
-
ClusterManagementListResult
public ClusterManagementListResult()
-
ClusterManagementListResult
public ClusterManagementListResult(ClusterManagementResult.StatusCode statusCode, java.lang.String message)
-
-
Method Detail
-
getEntityGroupInfo
public java.util.List<EntityGroupInfo<T,R>> getEntityGroupInfo()
Returns the combined payload of the list call- Returns:
- a list of
EntityGroupInfo
-
getResult
public java.util.List<EntityInfo<T,R>> getResult()
-
setResult
public void setResult(java.util.List<EntityInfo<T,R>> entities)
-
addEntityInfo
public void addEntityInfo(EntityInfo<T,R> entityInfo)
-
setEntityGroupInfo
public void setEntityGroupInfo(java.util.List<EntityGroupInfo<T,R>> entityGroupInfos)
-
getConfigResult
public java.util.List<T> getConfigResult()
Returns only the static config portion of the results- Returns:
- only the static config portion of the results
-
getRuntimeResult
public java.util.List<R> getRuntimeResult()
Returns only the runtime information portion of the results- Returns:
- only the runtime information portion of the results
-
-