Interface ResourceReference
-
- All Superinterfaces:
ContextParameter,NameValuePair
- All Known Implementing Classes:
ResourceReferenceDescriptor
public interface ResourceReference extends ContextParameter
Objects exhibiting this interface represent a specialization of a container property that is used for obtaining a database connection.
-
-
Field Summary
Fields Modifier and Type Field Description static StringAPPLICATION_AUTHORIZATIONstatic StringCONTAINER_AUTHORIZATION
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetAuthorization()StringgetType()return the fully qualified classname of the datasource factory - e.g.voidsetAuthorization(String authorization)voidsetDescription(String description)voidsetType(String type)-
Methods inherited from interface com.sun.enterprise.deployment.web.NameValuePair
getDescription, getName, getValue, setName, setValue
-
-
-
-
Field Detail
-
CONTAINER_AUTHORIZATION
static final String CONTAINER_AUTHORIZATION
- See Also:
- Constant Field Values
-
APPLICATION_AUTHORIZATION
static final String APPLICATION_AUTHORIZATION
- See Also:
- Constant Field Values
-
-
Method Detail
-
getType
String getType()
return the fully qualified classname of the datasource factory - e.g. javax.sql.DataSource.
-
setType
void setType(String type)
-
setDescription
void setDescription(String description)
- Specified by:
setDescriptionin interfaceNameValuePair
-
getAuthorization
String getAuthorization()
-
setAuthorization
void setAuthorization(String authorization)
-
-