All Downloads are FREE. Search and download functionalities are using the official Maven repository.

psiprobe.beans.accessors.DatasourceAccessor Maven / Gradle / Ivy

There is a newer version: 3.1.9
Show newest version
/**
 * 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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy