Package psiprobe.beans.accessors
Interface DatasourceAccessor
-
- All Known Implementing Classes:
OracleDatasourceAccessor,OracleUcpDatasourceAccessor
public interface DatasourceAccessorPart of datasource type abstraction layer. Allows to extent Probe functionality to any kind of datasources.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleancanMap(Object resource)Can map.DataSourceInfogetInfo(Object resource)Gets the info.booleanreset(Object resource)Reset.
-
-
-
Method Detail
-
getInfo
DataSourceInfo getInfo(Object resource) throws Exception
Gets the info.- Parameters:
resource- the resource- Returns:
- the info
- Throws:
Exception- the exception
-
reset
boolean reset(Object resource) throws Exception
Reset.- Parameters:
resource- the resource- Returns:
- true, if successful
- Throws:
Exception- the exception
-
canMap
boolean canMap(Object resource)
Can map.- Parameters:
resource- the resource- Returns:
- true, if successful
-
-