Interface PathResource.Parent
-
- All Superinterfaces:
ManageableResource
- All Known Subinterfaces:
HostConfiguration,HostControllerConfiguration,ManageableServerConfiguration,StandaloneServerConfiguration
- All Known Implementing Classes:
AbstractManageableServerConfiguration,EmbeddedHostConfiguration,EmbeddedHostControllerConfiguration,EmbeddedStandaloneServerConfiguration
- Enclosing interface:
- PathResource
public static interface PathResource.Parent extends ManageableResource
A facade (with full defaults) for aManageableResourcewhich hasPathResourcechildren.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default PathResourcegetPathResource(String resourceName)default StringgetPathResourceAbsoluteName(String resourceName)default org.jboss.dmr.ModelNodegetPathResourceConfiguration(String resourceName)default Set<String>getPathResourceNames()default org.jboss.as.controller.PathAddressgetPathResourcePathAddress(String resourceName)default List<PathResource>getPathResources()default booleanhasPathResource(String resourceName)default voidremovePathResource(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
-
getPathResource
default PathResource getPathResource(String resourceName) throws ManagementOperationException
- Throws:
ManagementOperationException
-
getPathResources
default List<PathResource> getPathResources() throws ManagementOperationException
- Throws:
ManagementOperationException
-
getPathResourceNames
default Set<String> getPathResourceNames() throws ManagementOperationException
- Throws:
ManagementOperationException
-
getPathResourcePathAddress
default org.jboss.as.controller.PathAddress getPathResourcePathAddress(String resourceName)
-
getPathResourceConfiguration
default org.jboss.dmr.ModelNode getPathResourceConfiguration(String resourceName) throws ManagementOperationException
- Throws:
ManagementOperationException
-
hasPathResource
default boolean hasPathResource(String resourceName) throws ManagementOperationException
- Throws:
ManagementOperationException
-
removePathResource
default void removePathResource(String resourceName) throws ManagementOperationException
- Throws:
ManagementOperationException
-
-