Package org.glassfish.jdbc.admin.cli
Class JDBCResourceManager
- java.lang.Object
-
- org.glassfish.jdbc.admin.cli.JDBCResourceManager
-
- All Implemented Interfaces:
ResourceManager
@Service(name="jdbc-resource") public class JDBCResourceManager extends Object implements ResourceManager
- Author:
- Prashanth Abbagani, Jagadish Ramu The JDBC resource manager allows you to create and delete the config element Will be used by the add-resources, deployment and CLI command
-
-
Constructor Summary
Constructors Constructor Description JDBCResourceManager()
-
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
-
-