Interface GenericResourceInfo
-
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
PoolInfo,ResourceInfo
public interface GenericResourceInfo extends Serializable
Represents resource information A resource may be defined in "java:app" scope or "java:module" scope- Author:
- Jagadish Ramu
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetApplicationName()application in which the resource is definedStringgetModuleName()module in which the resource is definedStringgetName()name of the resource
-
-
-
Method Detail
-
getName
String getName()
name of the resource- Returns:
- String name
-
getApplicationName
String getApplicationName()
application in which the resource is defined- Returns:
- String application-name
-
getModuleName
String getModuleName()
module in which the resource is defined- Returns:
- String module-name
-
-