Interface ResourceAccess
-
- All Known Implementing Classes:
PageElementResourceAccess
,PageResourceAccess
public interface ResourceAccess
Monitored resources. Each access to theses resources is monitored in order to be able to analyze cache efficiency and to calculate meaningful statistics
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getInsertStatementId()
Retrieves the name of the SQL statement to call.Map<String,Object>
getInsertStatementParameters()
Retrieves the map of parameters to use when executing the insert statement.
-
-
-
Method Detail
-
getInsertStatementParameters
Map<String,Object> getInsertStatementParameters()
Retrieves the map of parameters to use when executing the insert statement.- Returns:
- The map of parameters
-
getInsertStatementId
String getInsertStatementId()
Retrieves the name of the SQL statement to call.- Returns:
- The name of the SQL statement to call.
-
-