Class JndiResourceManager
- java.lang.Object
-
- org.glassfish.resources.admin.cli.JndiResourceManager
-
- All Implemented Interfaces:
ResourceManager
@Service(name="external-jndi-resource") @PerLookup public class JndiResourceManager extends Object implements ResourceManager
-
-
Constructor Summary
Constructors Constructor Description JndiResourceManager()
-
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 configurationStringgetResourceType()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
-
-