
fr.ird.observe.services.configuration.ObserveDataSourceConnection Maven / Gradle / Ivy
Show all versions of common-service Show documentation
package fr.ird.observe.services.configuration;
/*
* #%L
* ObServe Toolkit :: Common Service
* %%
* Copyright (C) 2017 - 2020 IRD, Ultreia.io
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public
* License along with this program. If not, see
* .
* #L%
*/
import java.io.Serializable;
import org.nuiton.version.Version;
/**
* Représente une source de donnée une fois la connexion acceptée.
*
* Created on 04/09/15.
*
* @author Tony Chemit - [email protected]
*/
public interface ObserveDataSourceConnection extends Serializable {
/**
* @return le jeton qui identifie cette connexion
*/
String getAuthenticationToken();
/**
* @return {@code true} si on peut lire les référentiels, {@code false} sinon.
*/
boolean canReadReferential();
/**
* @return {@code true} si on peut écrire les référentiels, {@code false} sinon.
*/
boolean canWriteReferential();
/**
* @return {@code true} si on peut lire des données, {@code false} sinon.
*/
boolean canReadData();
/**
* @return {@code true} si on peut écrire des données, {@code false} sinon.
*/
boolean canWriteData();
Version getVersion();
}