Package org.glassfish.concurrent.admin
Class ManagedThreadFactoryManager
- java.lang.Object
-
- org.glassfish.concurrent.admin.ManagedThreadFactoryManager
-
- All Implemented Interfaces:
ResourceManager
@Service(name="managed-thread-factory") public class ManagedThreadFactoryManager extends Object implements ResourceManager
The managed thread factory manager allows you to create and delete the managed-thread-factory config element
-
-
Constructor Summary
Constructors Constructor Description ManagedThreadFactoryManager()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ResourceStatuscreate(Resources resources, HashMap attributes, Properties properties, String target)creates the resource as a child to the resources providedResourcecreateConfigBean(Resources resources, HashMap attributes, Properties properties, boolean validate)creates config-bean equivalent for the resource configuration provided as attributes and properties
Does not persist the configurationResourceStatusdelete(Resources resources, String jndiName, String target)StringgetResourceType()returns the resource-type
-
-
-
Method Detail
-
getResourceType
public String getResourceType()
Description copied from interface:ResourceManagerreturns the resource-type- Specified by:
getResourceTypein interfaceResourceManager- Returns:
- resource-type
-
create
public ResourceStatus create(Resources resources, HashMap attributes, Properties properties, String target) throws Exception
Description copied from interface:ResourceManagercreates the resource as a child to the resources provided- Specified by:
createin interfaceResourceManager- Parameters:
resources- parent for the resource to be createdattributes- resource configurationproperties- propertiestarget- target- Returns:
- ResourceStatus indicating the status of resource creation
- Throws:
Exception- when unable to create the resource
-
createConfigBean
public Resource createConfigBean(Resources resources, HashMap attributes, Properties properties, boolean validate) throws Exception
Description copied from interface:ResourceManagercreates config-bean equivalent for the resource configuration provided as attributes and properties
Does not persist the configuration- Specified by:
createConfigBeanin interfaceResourceManager- Parameters:
resources- parent for the resource to be createdattributes- attributes of the resourceproperties- properties of the resourcevalidate- indicate whether config validation is required or not- Returns:
- Config-Bean equivalent of the resource
- Throws:
Exception- when unable to create config-bean-equivalent
-
-