Interface DeploymentResource.Parent
-
- All Superinterfaces:
ManageableResource
- All Known Subinterfaces:
HostControllerConfiguration,ServerGroupResource,StandaloneServerConfiguration
- All Known Implementing Classes:
EmbeddedHostControllerConfiguration,EmbeddedStandaloneServerConfiguration,ServerGroupResourceImpl
- Enclosing interface:
- DeploymentResource
public static interface DeploymentResource.Parent extends ManageableResource
A facade (with full defaults) for aManageableResourcewhich hasDeploymentResourcechildren.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default DeploymentResourcegetDeploymentResource(String resourceName)default StringgetDeploymentResourceAbsoluteName(String resourceName)default org.jboss.dmr.ModelNodegetDeploymentResourceConfiguration(String resourceName)default Set<String>getDeploymentResourceNames()default org.jboss.as.controller.PathAddressgetDeploymentResourcePathAddress(String resourceName)default List<DeploymentResource>getDeploymentResources()default booleanhasDeploymentResource(String resourceName)default voidremoveDeploymentResource(String resourceName)-
Methods inherited from interface org.jboss.migration.wfly10.config.management.ManageableResource
findResources, findResources, findResources, findResources, getChildResource, getChildResourceAbsoluteName, getChildResourceConfiguration, getChildResourceNames, getChildResourcePathAddress, getChildResources, getChildResources, getChildResources, getChildResourceTypes, getParentResource, getResourceAbsoluteName, getResourceConfiguration, getResourceName, getResourcePathAddress, getResourceType, getServerConfiguration, hasChildResource, isExistentResource, removeChildResource, removeResource
-
-
-
-
Method Detail
-
getDeploymentResource
default DeploymentResource getDeploymentResource(String resourceName) throws ManagementOperationException
- Throws:
ManagementOperationException
-
getDeploymentResources
default List<DeploymentResource> getDeploymentResources() throws ManagementOperationException
- Throws:
ManagementOperationException
-
getDeploymentResourceNames
default Set<String> getDeploymentResourceNames() throws ManagementOperationException
- Throws:
ManagementOperationException
-
getDeploymentResourcePathAddress
default org.jboss.as.controller.PathAddress getDeploymentResourcePathAddress(String resourceName)
-
getDeploymentResourceAbsoluteName
default String getDeploymentResourceAbsoluteName(String resourceName)
-
getDeploymentResourceConfiguration
default org.jboss.dmr.ModelNode getDeploymentResourceConfiguration(String resourceName) throws ManagementOperationException
- Throws:
ManagementOperationException
-
hasDeploymentResource
default boolean hasDeploymentResource(String resourceName) throws ManagementOperationException
- Throws:
ManagementOperationException
-
removeDeploymentResource
default void removeDeploymentResource(String resourceName) throws ManagementOperationException
- Throws:
ManagementOperationException
-
-