psiprobe.beans.accessors.DatasourceAccessor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of psi-probe-ojdbc Show documentation
Show all versions of psi-probe-ojdbc Show documentation
PSI Probe Ojdbc - License Restricted Oracle JDBC Driver Module
/**
* Licensed under the GPL License. You may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
*
* THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
* WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
* PURPOSE.
*/
package psiprobe.beans.accessors;
import psiprobe.model.DataSourceInfo;
/**
* Part of datasource type abstraction layer. Allows to extent Probe functionality to any kind of
* datasources.
*/
public interface DatasourceAccessor {
/**
* Gets the info.
*
* @param resource the resource
* @return the info
* @throws Exception the exception
*/
DataSourceInfo getInfo(Object resource) throws Exception;
/**
* Reset.
*
* @param resource the resource
* @return true, if successful
* @throws Exception the exception
*/
boolean reset(Object resource) throws Exception;
/**
* Can map.
*
* @param resource the resource
* @return true, if successful
*/
boolean canMap(Object resource);
}