Interface ProfileResource.Parent
-
- All Superinterfaces:
ManageableResource
- All Known Subinterfaces:
HostControllerConfiguration
- All Known Implementing Classes:
EmbeddedHostControllerConfiguration
- Enclosing interface:
- ProfileResource
public static interface ProfileResource.Parent extends ManageableResource
A facade (with full defaults) for aManageableResourcewhich hasProfileResourcechildren.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default ProfileResourcegetProfileResource(String resourceName)default StringgetProfileResourceAbsoluteName(String resourceName)default org.jboss.dmr.ModelNodegetProfileResourceConfiguration(String resourceName)default Set<String>getProfileResourceNames()default org.jboss.as.controller.PathAddressgetProfileResourcePathAddress(String resourceName)default List<ProfileResource>getProfileResources()default booleanhasProfileResource(String resourceName)default voidremoveProfileResource(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
-
getProfileResource
default ProfileResource getProfileResource(String resourceName) throws ManagementOperationException
- Throws:
ManagementOperationException
-
getProfileResources
default List<ProfileResource> getProfileResources() throws ManagementOperationException
- Throws:
ManagementOperationException
-
getProfileResourceNames
default Set<String> getProfileResourceNames() throws ManagementOperationException
- Throws:
ManagementOperationException
-
getProfileResourcePathAddress
default org.jboss.as.controller.PathAddress getProfileResourcePathAddress(String resourceName)
-
getProfileResourceConfiguration
default org.jboss.dmr.ModelNode getProfileResourceConfiguration(String resourceName) throws ManagementOperationException
- Throws:
ManagementOperationException
-
hasProfileResource
default boolean hasProfileResource(String resourceName) throws ManagementOperationException
- Throws:
ManagementOperationException
-
removeProfileResource
default void removeProfileResource(String resourceName) throws ManagementOperationException
- Throws:
ManagementOperationException
-
-