Removed ScopeProvider calls

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/data-access/DatabasesResourcesManagerAlgorithms@144440 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2017-02-28 16:16:34 +00:00
parent 492885ac10
commit af053db669
106 changed files with 1009 additions and 1003 deletions

View File

@ -1,4 +1,9 @@
<ReleaseNotes> <ReleaseNotes>
<Changeset
component="org.gcube.dataaccess.algorithms.database-rm-algorithms.1-5-0"
date="2017-02-15">
<Change>Removed ScopeProvider calls</Change>
</Changeset>
<Changeset <Changeset
component="org.gcube.dataaccess.algorithms.database-rm-algorithms.1-4-0" component="org.gcube.dataaccess.algorithms.database-rm-algorithms.1-4-0"
date="2016-12-01"> date="2016-12-01">

View File

@ -11,7 +11,7 @@
<groupId>org.gcube.dataaccess.algorithms</groupId> <groupId>org.gcube.dataaccess.algorithms</groupId>
<artifactId>database-rm-algorithms</artifactId> <artifactId>database-rm-algorithms</artifactId>
<version>1.4.0-SNAPSHOT</version> <version>1.5.0-SNAPSHOT</version>
<name>DatabasesResourcesManagerAlgorithms</name> <name>DatabasesResourcesManagerAlgorithms</name>
<description>Databases Resources Manager Algorithms</description> <description>Databases Resources Manager Algorithms</description>

View File

@ -7,7 +7,6 @@ import java.util.LinkedHashMap;
import java.util.List; import java.util.List;
import java.util.UUID; import java.util.UUID;
import org.gcube.common.scope.api.ScopeProvider;
import org.gcube.contentmanagement.lexicalmatcher.utils.AnalysisLogger; import org.gcube.contentmanagement.lexicalmatcher.utils.AnalysisLogger;
import org.gcube.dataaccess.databases.access.DatabasesDiscoverer; import org.gcube.dataaccess.databases.access.DatabasesDiscoverer;
import org.gcube.dataaccess.databases.resources.DBResource; import org.gcube.dataaccess.databases.resources.DBResource;
@ -15,13 +14,13 @@ import org.gcube.dataaccess.databases.utils.DatabaseManagement;
import org.gcube.dataanalysis.ecoengine.datatypes.PrimitiveType; import org.gcube.dataanalysis.ecoengine.datatypes.PrimitiveType;
import org.gcube.dataanalysis.ecoengine.datatypes.StatisticalType; import org.gcube.dataanalysis.ecoengine.datatypes.StatisticalType;
import org.gcube.dataanalysis.ecoengine.datatypes.enumtypes.PrimitiveTypes; import org.gcube.dataanalysis.ecoengine.datatypes.enumtypes.PrimitiveTypes;
import org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm; import org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalInfraAlgorithm;
import org.gcube.resources.discovery.client.api.DiscoveryException; import org.gcube.resources.discovery.client.api.DiscoveryException;
import org.gcube.resources.discovery.client.api.InvalidResultException; import org.gcube.resources.discovery.client.api.InvalidResultException;
import org.hibernate.HibernateException; import org.hibernate.HibernateException;
/** Class that allows to retrieve some information about the chosen table */ /** Class that allows to retrieve some information about the chosen table */
public class GetTableDetails extends StandardLocalExternalAlgorithm { public class GetTableDetails extends StandardLocalInfraAlgorithm {
private static final String ROWS_NUMBER = "Rows Number"; private static final String ROWS_NUMBER = "Rows Number";
private static final String NAME_OF_COLUMNS = "Name Of Columns"; private static final String NAME_OF_COLUMNS = "Name Of Columns";
@ -38,7 +37,7 @@ public class GetTableDetails extends StandardLocalExternalAlgorithm {
private String schemaName = null; private String schemaName = null;
private String tableName = null; private String tableName = null;
//private SessionFactory sf; // private SessionFactory sf;
@Override @Override
public void init() throws Exception { public void init() throws Exception {
@ -46,26 +45,11 @@ public class GetTableDetails extends StandardLocalExternalAlgorithm {
mgt = new DatabaseManagement(config.getConfigPath()); mgt = new DatabaseManagement(config.getConfigPath());
AnalysisLogger.getLogger().debug("In GetTableDetails->Initialization"); AnalysisLogger.getLogger().debug("In GetTableDetails->Initialization");
String scope = config.getGcubeScope(); String scope = config.getGcubeScope();
AnalysisLogger.getLogger().debug("In GetTableDetails->scope set by config: " + scope);
// AnalysisLogger.getLogger().debug("In TableDetails->scope set by config: " + config.getGcubeScope());
if (scope == null || scope.length() == 0) {
scope = ScopeProvider.instance.get();
AnalysisLogger.getLogger().debug("In GetTableDetails->scope set by ScopeProvider: " + scope);
} else {
ScopeProvider.instance.set(scope); AnalysisLogger.getLogger().debug(
"In GetTableDetails->scope set by config: " + scope);
}
} }
@ -154,7 +138,7 @@ public class GetTableDetails extends StandardLocalExternalAlgorithm {
@Override @Override
protected void setInputParameters() { protected void setInputParameters() {
// AnalysisLogger.getLogger().debug("In GetTableDetails->setting inputs"); // AnalysisLogger.getLogger().debug("In GetTableDetails->setting inputs");
// parameters specified by the user // parameters specified by the user
addStringInput("ResourceName", "The name of the resource", ""); addStringInput("ResourceName", "The name of the resource", "");
@ -173,13 +157,15 @@ public class GetTableDetails extends StandardLocalExternalAlgorithm {
@Override @Override
public StatisticalType getOutput() { public StatisticalType getOutput() {
AnalysisLogger.getLogger().debug("In GetTableDetails->retrieving outputs"); AnalysisLogger.getLogger().debug(
"In GetTableDetails->retrieving outputs");
// generate a primitive type for the collection // generate a primitive type for the collection
PrimitiveType output = new PrimitiveType(LinkedHashMap.class.getName(), PrimitiveType output = new PrimitiveType(LinkedHashMap.class.getName(),
map, PrimitiveTypes.MAP, "ResultsMap"+UUID.randomUUID(), "Results Map"); map, PrimitiveTypes.MAP, "ResultsMap" + UUID.randomUUID(),
"Results Map");
return output; return output;
} }
@ -196,9 +182,8 @@ public class GetTableDetails extends StandardLocalExternalAlgorithm {
String DatabaseURL = iterator.next(); String DatabaseURL = iterator.next();
String DatabaseName = iterator.next(); String DatabaseName = iterator.next();
mgt.createConnection(DatabaseUserName, mgt.createConnection(DatabaseUserName, DatabasePassword,
DatabasePassword, DatabaseDriver, DatabaseDialect, DatabaseURL, DatabaseDriver, DatabaseDialect, DatabaseURL, DatabaseName);
DatabaseName);
AnalysisLogger.getLogger().debug( AnalysisLogger.getLogger().debug(
"In GetTableDetails->database " + DatabaseName + ": connected"); "In GetTableDetails->database " + DatabaseName + ": connected");
@ -209,8 +194,8 @@ public class GetTableDetails extends StandardLocalExternalAlgorithm {
IllegalStateException, DiscoveryException, InvalidResultException { IllegalStateException, DiscoveryException, InvalidResultException {
resourceName = getInputParameter("ResourceName"); resourceName = getInputParameter("ResourceName");
if(resourceName != null){ if (resourceName != null) {
resourceName = getInputParameter("ResourceName").trim(); resourceName = getInputParameter("ResourceName").trim();
} }
@ -218,10 +203,9 @@ public class GetTableDetails extends StandardLocalExternalAlgorithm {
throw new Exception("Warning: insert the resource name"); throw new Exception("Warning: insert the resource name");
} }
databaseName = getInputParameter("DatabaseName"); databaseName = getInputParameter("DatabaseName");
if(databaseName != null){ if (databaseName != null) {
databaseName = getInputParameter("DatabaseName").trim(); databaseName = getInputParameter("DatabaseName").trim();
} }
if ((databaseName == null) || (databaseName.equals(""))) { if ((databaseName == null) || (databaseName.equals(""))) {
@ -250,7 +234,8 @@ public class GetTableDetails extends StandardLocalExternalAlgorithm {
check: for (int i = 0; i < resources.size(); i++) { check: for (int i = 0; i < resources.size(); i++) {
if (resources.get(i).getResourceName().toLowerCase().equals(resourceName.toLowerCase())) { if (resources.get(i).getResourceName().toLowerCase()
.equals(resourceName.toLowerCase())) {
normalizeDBInfo(resources.get(i)); normalizeDBInfo(resources.get(i));
@ -294,7 +279,8 @@ public class GetTableDetails extends StandardLocalExternalAlgorithm {
// } // }
if (resources.get(i).getAccessPoints().get(j) if (resources.get(i).getAccessPoints().get(j)
.getDatabaseName().toLowerCase().equals(databaseName.toLowerCase())) { .getDatabaseName().toLowerCase()
.equals(databaseName.toLowerCase())) {
info.add(resources.get(i).getAccessPoints().get(j) info.add(resources.get(i).getAccessPoints().get(j)
.getUsername()); .getUsername());
@ -372,20 +358,19 @@ public class GetTableDetails extends StandardLocalExternalAlgorithm {
private LinkedHashMap<String, StatisticalType> getDetails() private LinkedHashMap<String, StatisticalType> getDetails()
throws Exception { throws Exception {
tableName = getInputParameter("TableName"); tableName = getInputParameter("TableName");
if(tableName != null){ if (tableName != null) {
tableName = getInputParameter("TableName").trim(); tableName = getInputParameter("TableName").trim();
} }
if ((tableName == null) || (tableName.equals(""))) { if ((tableName == null) || (tableName.equals(""))) {
throw new Exception("Warning: insert the table name"); throw new Exception("Warning: insert the table name");
} }
if (driverInfo.toLowerCase().contains("postgres")) { if (driverInfo.toLowerCase().contains("postgres")) {
schemaName = getInputParameter("SchemaName"); schemaName = getInputParameter("SchemaName");
if(schemaName != null){ if (schemaName != null) {
schemaName = getInputParameter("SchemaName").trim(); schemaName = getInputParameter("SchemaName").trim();
} }
if ((schemaName == null) || (schemaName.equals(""))) { if ((schemaName == null) || (schemaName.equals(""))) {
@ -394,7 +379,8 @@ public class GetTableDetails extends StandardLocalExternalAlgorithm {
} }
AnalysisLogger.getLogger().debug( AnalysisLogger.getLogger().debug(
"In GetTableDetails->getting details on the table: " + tableName); "In GetTableDetails->getting details on the table: "
+ tableName);
// recover metadata of the table // recover metadata of the table
@ -413,7 +399,6 @@ public class GetTableDetails extends StandardLocalExternalAlgorithm {
createTable = mgt.getCreateTable(tableName, databaseName); createTable = mgt.getCreateTable(tableName, databaseName);
} }
PrimitiveType valCreateTable = new PrimitiveType( PrimitiveType valCreateTable = new PrimitiveType(
String.class.getName(), createTable, PrimitiveTypes.STRING, String.class.getName(), createTable, PrimitiveTypes.STRING,
@ -440,10 +425,9 @@ public class GetTableDetails extends StandardLocalExternalAlgorithm {
} }
} }
AnalysisLogger.getLogger().debug( AnalysisLogger.getLogger().debug(
"In GetTableDetails->column names: " "In GetTableDetails->column names: " + ColumnName);
+ ColumnName);
PrimitiveType valListColumnNamesTable = new PrimitiveType( PrimitiveType valListColumnNamesTable = new PrimitiveType(
String.class.getName(), ColumnName, PrimitiveTypes.STRING, String.class.getName(), ColumnName, PrimitiveTypes.STRING,
@ -457,34 +441,34 @@ public class GetTableDetails extends StandardLocalExternalAlgorithm {
// recover the number of rows // recover the number of rows
// BigInteger rows = mgt.getNumberOfRows(tableName); // BigInteger rows = mgt.getNumberOfRows(tableName);
long rows = 0; long rows = 0;
if ((driverInfo.toLowerCase().contains("postgres"))) { if ((driverInfo.toLowerCase().contains("postgres"))) {
AnalysisLogger.getLogger().debug( AnalysisLogger.getLogger().debug(
"In GetTableDetails->schemaName:" + schemaName);; "In GetTableDetails->schemaName:" + schemaName);
;
rows = mgt.getNumberOfRows(tableName, schemaName); rows = mgt.getNumberOfRows(tableName, schemaName);
} }
if ((driverInfo.toLowerCase().contains("mysql"))) { if ((driverInfo.toLowerCase().contains("mysql"))) {
AnalysisLogger.getLogger().debug( AnalysisLogger.getLogger().debug(
"In GetTableDetails->*databasename:" + databaseName);; "In GetTableDetails->*databasename:" + databaseName);
;
rows = mgt.getNumberOfRows(tableName, databaseName); rows = mgt.getNumberOfRows(tableName, databaseName);
} }
PrimitiveType valRows = new PrimitiveType(String.class.getName(), PrimitiveType valRows = new PrimitiveType(String.class.getName(),
Long.toString(rows), PrimitiveTypes.STRING, ROWS_NUMBER, Long.toString(rows), PrimitiveTypes.STRING, ROWS_NUMBER,
ROWS_NUMBER); ROWS_NUMBER);
map.put(ROWS_NUMBER, valRows); map.put(ROWS_NUMBER, valRows);
AnalysisLogger.getLogger().debug( AnalysisLogger.getLogger().debug(
"In GetTableDetails->getting the number of rows: " "In GetTableDetails->getting the number of rows: "
+ Long.toString(rows)); + Long.toString(rows));
@ -494,40 +478,40 @@ public class GetTableDetails extends StandardLocalExternalAlgorithm {
} }
private void normalizeDBInfo(DBResource resource) throws Exception { private void normalizeDBInfo(DBResource resource) throws Exception {
try{ try {
int ap = resource.getAccessPoints().size(); int ap = resource.getAccessPoints().size();
for (int i = 0; i < ap; i++) { for (int i = 0; i < ap; i++) {
resource.normalize(i); resource.normalize(i);
} }
}catch (Exception e) { } catch (Exception e) {
AnalysisLogger.getLogger().debug( AnalysisLogger.getLogger().debug(
"In GetTableDetails->: Error in normalization process" "In GetTableDetails->: Error in normalization process"
+ e.getMessage()); + e.getMessage());
throw e; throw e;
} }
// int ap = resource.getAccessPoints().size(); // int ap = resource.getAccessPoints().size();
// //
// for (int i = 0; i < ap; i++) { // for (int i = 0; i < ap; i++) {
// //
// try { // try {
// resource.normalize(i); // resource.normalize(i);
// } catch (IOException e) { // } catch (IOException e) {
// //
// // e.printStackTrace(); // // e.printStackTrace();
// AnalysisLogger.getLogger().debug( // AnalysisLogger.getLogger().debug(
// "In GetTableDetails->: Error in normalization process" // "In GetTableDetails->: Error in normalization process"
// + e.getMessage()); // + e.getMessage());
// //
// throw e; // throw e;
// //
// } // }
// //
// } // }
} }
} }

View File

@ -6,7 +6,6 @@ import java.util.LinkedHashMap;
import java.util.List; import java.util.List;
import java.util.UUID; import java.util.UUID;
import org.gcube.common.scope.api.ScopeProvider;
import org.gcube.contentmanagement.lexicalmatcher.utils.AnalysisLogger; import org.gcube.contentmanagement.lexicalmatcher.utils.AnalysisLogger;
import org.gcube.dataaccess.databases.access.DatabasesDiscoverer; import org.gcube.dataaccess.databases.access.DatabasesDiscoverer;
import org.gcube.dataaccess.databases.resources.DBResource; import org.gcube.dataaccess.databases.resources.DBResource;
@ -14,19 +13,18 @@ import org.gcube.dataaccess.databases.resources.DBResource.AccessPoint;
import org.gcube.dataanalysis.ecoengine.datatypes.PrimitiveType; import org.gcube.dataanalysis.ecoengine.datatypes.PrimitiveType;
import org.gcube.dataanalysis.ecoengine.datatypes.StatisticalType; import org.gcube.dataanalysis.ecoengine.datatypes.StatisticalType;
import org.gcube.dataanalysis.ecoengine.datatypes.enumtypes.PrimitiveTypes; import org.gcube.dataanalysis.ecoengine.datatypes.enumtypes.PrimitiveTypes;
import org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm; import org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalInfraAlgorithm;
import org.gcube.resources.discovery.client.api.DiscoveryException; import org.gcube.resources.discovery.client.api.DiscoveryException;
import org.gcube.resources.discovery.client.api.InvalidResultException; import org.gcube.resources.discovery.client.api.InvalidResultException;
/** Class that allows to retrieve information about the chosen resource */ /** Class that allows to retrieve information about the chosen resource */
public class ListDBInfo extends StandardLocalExternalAlgorithm { public class ListDBInfo extends StandardLocalInfraAlgorithm {
private static final String PLATFORM_VERSION = "Platform Version "; private static final String PLATFORM_VERSION = "Platform Version ";
private static final String DIALECT_NAME = "Dialect Name "; private static final String DIALECT_NAME = "Dialect Name ";
private static final String DATABASE_NAME = "Database Name "; private static final String DATABASE_NAME = "Database Name ";
private static final String DRIVER_NAME = "Driver Name "; private static final String DRIVER_NAME = "Driver Name ";
private static final String URL_NAME = "URL "; private static final String URL_NAME = "URL ";
private LinkedHashMap<String, StatisticalType> map = new LinkedHashMap<String, StatisticalType>(); private LinkedHashMap<String, StatisticalType> map = new LinkedHashMap<String, StatisticalType>();
// database's parameters specified by the user // database's parameters specified by the user
@ -34,7 +32,7 @@ public class ListDBInfo extends StandardLocalExternalAlgorithm {
// list that contains information about the resource // list that contains information about the resource
private List<AccessPoint> ap = new ArrayList<AccessPoint>(); private List<AccessPoint> ap = new ArrayList<AccessPoint>();
// variable that keeps track of database platform version // variable that keeps track of database platform version
private String platformVersion = ""; private String platformVersion = "";
@ -42,24 +40,12 @@ public class ListDBInfo extends StandardLocalExternalAlgorithm {
public void init() throws Exception { public void init() throws Exception {
AnalysisLogger.getLogger().debug("In ListDBInfo->Initialization"); AnalysisLogger.getLogger().debug("In ListDBInfo->Initialization");
String scope = config.getGcubeScope(); String scope = config.getGcubeScope();
AnalysisLogger.getLogger().debug("In ListDBInfo->scope set by config object: " + scope); AnalysisLogger.getLogger().debug(
"In ListDBInfo->scope set by config object: " + scope);
if (scope == null || scope.length() == 0) {
scope = ScopeProvider.instance.get();
AnalysisLogger.getLogger().debug("In ListDBInfo->scope set by ScopeProvider: " + scope);
}else{
ScopeProvider.instance.set(scope);
}
} }
@Override @Override
@ -69,127 +55,124 @@ public class ListDBInfo extends StandardLocalExternalAlgorithm {
} }
@Override @Override
protected void process() throws Exception, IOException, IllegalStateException, DiscoveryException, InvalidResultException { protected void process() throws Exception, IOException,
IllegalStateException, DiscoveryException, InvalidResultException {
AnalysisLogger.getLogger().debug("In ListDBInfo->Processing"); AnalysisLogger.getLogger().debug("In ListDBInfo->Processing");
AnalysisLogger.getLogger().debug("Scope: " + ScopeProvider.instance.get()); try {
// retrieve information
List<AccessPoint> apInfo = retrieveInfo();
try{
// retrieve information
List<AccessPoint> apInfo = retrieveInfo();
AnalysisLogger.getLogger().debug("access point dimension: " + apInfo.size());
for (int i = 0; i < apInfo.size(); i++) {
String name = DATABASE_NAME+(i+1);
PrimitiveType DBName = new PrimitiveType(String.class.getName(),
apInfo.get(i).getDatabaseName(), PrimitiveTypes.STRING,
name
, name);
map.put(name, DBName);
AnalysisLogger.getLogger().debug( AnalysisLogger.getLogger().debug(
"In ListDBInfo->Database Name: " "access point dimension: " + apInfo.size());
+ apInfo.get(i).getDatabaseName());
String urlId=URL_NAME+(i+1);
PrimitiveType url = new PrimitiveType(String.class.getName(),
apInfo.get(i).address(), PrimitiveTypes.STRING, urlId,
urlId);
map.put(urlId, url); for (int i = 0; i < apInfo.size(); i++) {
String name = DATABASE_NAME + (i + 1);
PrimitiveType DBName = new PrimitiveType(
String.class.getName(),
apInfo.get(i).getDatabaseName(), PrimitiveTypes.STRING,
name, name);
AnalysisLogger.getLogger().debug( map.put(name, DBName);
"In ListDBInfo->URL: " + apInfo.get(i).address());
String driverId=DRIVER_NAME+(i+1); AnalysisLogger.getLogger().debug(
PrimitiveType driver = new PrimitiveType(String.class.getName(), "In ListDBInfo->Database Name: "
apInfo.get(i).getDriver(), PrimitiveTypes.STRING, + apInfo.get(i).getDatabaseName());
driverId, driverId); String urlId = URL_NAME + (i + 1);
PrimitiveType url = new PrimitiveType(String.class.getName(),
apInfo.get(i).address(), PrimitiveTypes.STRING, urlId,
urlId);
map.put(driverId, driver); map.put(urlId, url);
AnalysisLogger.getLogger().debug( AnalysisLogger.getLogger().debug(
"In ListDBInfo->Driver Name: " "In ListDBInfo->URL: " + apInfo.get(i).address());
+ apInfo.get(i).getDriver());
String dialectId=DIALECT_NAME+(i+1);
PrimitiveType dialect = new PrimitiveType(String.class.getName(),
apInfo.get(i).getDialect(), PrimitiveTypes.STRING,
dialectId, dialectId);
map.put(dialectId, dialect); String driverId = DRIVER_NAME + (i + 1);
PrimitiveType driver = new PrimitiveType(
String.class.getName(), apInfo.get(i).getDriver(),
PrimitiveTypes.STRING, driverId, driverId);
AnalysisLogger.getLogger().debug( map.put(driverId, driver);
"In ListDBInfo->Dialect Name: "
+ apInfo.get(i).getDialect());
String platformId=PLATFORM_VERSION+(i+1);
PrimitiveType platformVersionValue = new PrimitiveType(String.class.getName(),
platformVersion, PrimitiveTypes.STRING,
platformId, platformId);
map.put(platformId, platformVersionValue); AnalysisLogger.getLogger().debug(
"In ListDBInfo->Driver Name: "
+ apInfo.get(i).getDriver());
AnalysisLogger.getLogger().debug( String dialectId = DIALECT_NAME + (i + 1);
"In ListDBInfo->Platform Version: " PrimitiveType dialect = new PrimitiveType(
+ platformVersion); String.class.getName(), apInfo.get(i).getDialect(),
PrimitiveTypes.STRING, dialectId, dialectId);
map.put(dialectId, dialect);
AnalysisLogger.getLogger().debug(
"In ListDBInfo->Dialect Name: "
+ apInfo.get(i).getDialect());
String platformId = PLATFORM_VERSION + (i + 1);
PrimitiveType platformVersionValue = new PrimitiveType(
String.class.getName(), platformVersion,
PrimitiveTypes.STRING, platformId, platformId);
map.put(platformId, platformVersionValue);
AnalysisLogger.getLogger().debug(
"In ListDBInfo->Platform Version: " + platformVersion);
}
} }
}
catch (IllegalStateException e) { catch (IllegalStateException e) {
// e.printStackTrace(); // e.printStackTrace();
AnalysisLogger.getLogger().debug("In ListDBInfo-> ERROR " + e.getMessage()); AnalysisLogger.getLogger().debug(
"In ListDBInfo-> ERROR " + e.getMessage());
throw e; throw e;
} catch (DiscoveryException e1) { } catch (DiscoveryException e1) {
// e1.printStackTrace(); // e1.printStackTrace();
AnalysisLogger.getLogger().debug("In ListDBInfo-> ERROR " + e1.getMessage()); AnalysisLogger.getLogger().debug(
"In ListDBInfo-> ERROR " + e1.getMessage());
throw e1; throw e1;
} catch (InvalidResultException e2) { } catch (InvalidResultException e2) {
// e2.printStackTrace(); // e2.printStackTrace();
AnalysisLogger.getLogger().debug("In ListDBInfo-> ERROR " + e2.getMessage()); AnalysisLogger.getLogger().debug(
"In ListDBInfo-> ERROR " + e2.getMessage());
throw e2; throw e2;
} }
// catch(IOException e3){ // catch(IOException e3){
//// e3.printStackTrace(); // // e3.printStackTrace();
// //
// AnalysisLogger.getLogger().debug("In ListDBInfo-> Exception " + e3.getMessage()); // AnalysisLogger.getLogger().debug("In ListDBInfo-> Exception " +
// // e3.getMessage());
// throw e3; //
// } // throw e3;
// }
catch(Exception e4){
catch (Exception e4) {
// e4.printStackTrace();
AnalysisLogger.getLogger().debug("In ListDBInfo-> Exception " + e4.getMessage()); // e4.printStackTrace();
AnalysisLogger.getLogger().debug(
"In ListDBInfo-> Exception " + e4.getMessage());
throw e4; throw e4;
} }
} }
@Override @Override
protected void setInputParameters() { protected void setInputParameters() {
// AnalysisLogger.getLogger().debug("In ListDBInfo->setting inputs"); // AnalysisLogger.getLogger().debug("In ListDBInfo->setting inputs");
// resource name specified by the user // resource name specified by the user
addStringInput("ResourceName", "The name of the resource", ""); addStringInput("ResourceName", "The name of the resource", "");
@ -209,13 +192,15 @@ public class ListDBInfo extends StandardLocalExternalAlgorithm {
// generate a primitive type for the collection // generate a primitive type for the collection
PrimitiveType output = new PrimitiveType(LinkedHashMap.class.getName(), PrimitiveType output = new PrimitiveType(LinkedHashMap.class.getName(),
map, PrimitiveTypes.MAP, "ResultsMap"+UUID.randomUUID(), "Results Map"); map, PrimitiveTypes.MAP, "ResultsMap" + UUID.randomUUID(),
"Results Map");
return output; return output;
} }
private List<AccessPoint> retrieveInfo() throws Exception, IllegalStateException, DiscoveryException, InvalidResultException { private List<AccessPoint> retrieveInfo() throws Exception,
IllegalStateException, DiscoveryException, InvalidResultException {
resourceName = getInputParameter("ResourceName"); resourceName = getInputParameter("ResourceName");
@ -238,8 +223,9 @@ public class ListDBInfo extends StandardLocalExternalAlgorithm {
check: for (int i = 0; i < resources.size(); i++) { check: for (int i = 0; i < resources.size(); i++) {
if (resources.get(i).getResourceName().toLowerCase().equals(resourceName.toLowerCase())) { if (resources.get(i).getResourceName().toLowerCase()
.equals(resourceName.toLowerCase())) {
platformVersion = resources.get(i).getPlatformVersion(); platformVersion = resources.get(i).getPlatformVersion();
// ap = resources.get(i).getAccessPoints(); // ap = resources.get(i).getAccessPoints();
@ -258,41 +244,41 @@ public class ListDBInfo extends StandardLocalExternalAlgorithm {
} }
private void normalizeDBInfo(DBResource resource) throws Exception { private void normalizeDBInfo(DBResource resource) throws Exception {
try{ try {
int ap = resource.getAccessPoints().size(); int ap = resource.getAccessPoints().size();
for (int i = 0; i < ap; i++) { for (int i = 0; i < ap; i++) {
resource.normalize(i); resource.normalize(i);
} }
}catch (Exception e) { } catch (Exception e) {
AnalysisLogger.getLogger().debug( AnalysisLogger.getLogger().debug(
"In ListDBInfo->: Error in normalization process" "In ListDBInfo->: Error in normalization process"
+ e.getMessage()); + e.getMessage());
throw e; throw e;
} }
// int ap = resource.getAccessPoints().size(); // int ap = resource.getAccessPoints().size();
// //
// for (int i = 0; i < ap; i++) { // for (int i = 0; i < ap; i++) {
// //
// try { // try {
// resource.normalize(i); // resource.normalize(i);
// } // }
//// catch (IOException e) { // // catch (IOException e) {
// catch (IOException e) { // catch (IOException e) {
// // TODO Auto-generated catch block // // TODO Auto-generated catch block
//// e.printStackTrace(); // // e.printStackTrace();
// AnalysisLogger.getLogger().debug( // AnalysisLogger.getLogger().debug(
// "In ListDBInfo->: Error in normalization process" // "In ListDBInfo->: Error in normalization process"
// + e.getMessage()); // + e.getMessage());
// throw e; // throw e;
// //
// } // }
// //
// } // }
} }

View File

@ -5,23 +5,22 @@ import java.util.LinkedHashMap;
import java.util.List; import java.util.List;
import java.util.UUID; import java.util.UUID;
import org.gcube.common.scope.api.ScopeProvider;
import org.gcube.contentmanagement.lexicalmatcher.utils.AnalysisLogger; import org.gcube.contentmanagement.lexicalmatcher.utils.AnalysisLogger;
import org.gcube.dataaccess.databases.access.DatabasesDiscoverer; import org.gcube.dataaccess.databases.access.DatabasesDiscoverer;
import org.gcube.dataaccess.databases.resources.DBResource; import org.gcube.dataaccess.databases.resources.DBResource;
import org.gcube.dataanalysis.ecoengine.datatypes.PrimitiveType; import org.gcube.dataanalysis.ecoengine.datatypes.PrimitiveType;
import org.gcube.dataanalysis.ecoengine.datatypes.StatisticalType; import org.gcube.dataanalysis.ecoengine.datatypes.StatisticalType;
import org.gcube.dataanalysis.ecoengine.datatypes.enumtypes.PrimitiveTypes; import org.gcube.dataanalysis.ecoengine.datatypes.enumtypes.PrimitiveTypes;
import org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm; import org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalInfraAlgorithm;
import org.gcube.resources.discovery.client.api.DiscoveryException; import org.gcube.resources.discovery.client.api.DiscoveryException;
import org.gcube.resources.discovery.client.api.InvalidResultException; import org.gcube.resources.discovery.client.api.InvalidResultException;
/** Class that allows to retrieve a list of database resources */ /** Class that allows to retrieve a list of database resources */
public class ListNames extends StandardLocalExternalAlgorithm { public class ListNames extends StandardLocalInfraAlgorithm {
private static final String RESOURCE_NAME = "Resource Name "; private static final String RESOURCE_NAME = "Resource Name ";
private LinkedHashMap<String, StatisticalType> map = new LinkedHashMap<String, StatisticalType>(); private LinkedHashMap<String, StatisticalType> map = new LinkedHashMap<String, StatisticalType>();
@Override @Override
public void init() throws Exception { public void init() throws Exception {
@ -32,18 +31,6 @@ public class ListNames extends StandardLocalExternalAlgorithm {
AnalysisLogger.getLogger().debug( AnalysisLogger.getLogger().debug(
"In ListNames->scope set by config object: " + scope); "In ListNames->scope set by config object: " + scope);
if (scope == null || scope.length() == 0) {
scope = ScopeProvider.instance.get();
AnalysisLogger.getLogger().debug(
"In ListNames->scope set by ScopeProvider: " + scope);
} else {
ScopeProvider.instance.set(scope);
}
} }
@Override @Override
@ -58,16 +45,6 @@ public class ListNames extends StandardLocalExternalAlgorithm {
AnalysisLogger.getLogger().debug("In ListNames->Processing"); AnalysisLogger.getLogger().debug("In ListNames->Processing");
String scope = ScopeProvider.instance.get();
if (scope != null) {
AnalysisLogger.getLogger().debug("getting scope: " + scope);
AnalysisLogger.getLogger().debug(
"getting scope through config: " + config.getGcubeScope());
}
try { try {
// retrieve resources // retrieve resources
@ -79,10 +56,10 @@ public class ListNames extends StandardLocalExternalAlgorithm {
ArrayList<String> listnames = new ArrayList<String>(); ArrayList<String> listnames = new ArrayList<String>();
for (int i = 0; i < resources.size(); i++) { for (int i = 0; i < resources.size(); i++) {
String name = RESOURCE_NAME+(i+1); String name = RESOURCE_NAME + (i + 1);
PrimitiveType val = new PrimitiveType(String.class.getName(), PrimitiveType val = new PrimitiveType(String.class.getName(),
null, PrimitiveTypes.STRING, name, name); null, PrimitiveTypes.STRING, name, name);
AnalysisLogger.getLogger().debug( AnalysisLogger.getLogger().debug(
"In ListNames->Resource's name: " "In ListNames->Resource's name: "
+ resources.get(i).getResourceName()); + resources.get(i).getResourceName());
@ -128,7 +105,7 @@ public class ListNames extends StandardLocalExternalAlgorithm {
@Override @Override
protected void setInputParameters() { protected void setInputParameters() {
// AnalysisLogger.getLogger().debug("In ListNames->setting inputs"); // AnalysisLogger.getLogger().debug("In ListNames->setting inputs");
addStringInput("MaxNumber", "Max Number of Resources (-1 for all)", addStringInput("MaxNumber", "Max Number of Resources (-1 for all)",
"-1"); "-1");
@ -147,13 +124,13 @@ public class ListNames extends StandardLocalExternalAlgorithm {
// generate a primitive type for the collection // generate a primitive type for the collection
PrimitiveType output = new PrimitiveType(LinkedHashMap.class.getName(), PrimitiveType output = new PrimitiveType(LinkedHashMap.class.getName(),
map, PrimitiveTypes.MAP, "ResultsMap"+UUID.randomUUID(), "Results Map"); map, PrimitiveTypes.MAP, "ResultsMap" + UUID.randomUUID(),
"Results Map");
return output; return output;
} }
private List<DBResource> retrieveResources() throws IllegalStateException, private List<DBResource> retrieveResources() throws IllegalStateException,
DiscoveryException, InvalidResultException { DiscoveryException, InvalidResultException {

View File

@ -7,7 +7,6 @@ import java.util.LinkedHashMap;
import java.util.List; import java.util.List;
import java.util.UUID; import java.util.UUID;
import org.gcube.common.scope.api.ScopeProvider;
import org.gcube.contentmanagement.lexicalmatcher.utils.AnalysisLogger; import org.gcube.contentmanagement.lexicalmatcher.utils.AnalysisLogger;
import org.gcube.dataaccess.databases.access.DatabasesDiscoverer; import org.gcube.dataaccess.databases.access.DatabasesDiscoverer;
import org.gcube.dataaccess.databases.resources.DBResource; import org.gcube.dataaccess.databases.resources.DBResource;
@ -15,7 +14,7 @@ import org.gcube.dataaccess.databases.utils.DatabaseManagement;
import org.gcube.dataanalysis.ecoengine.datatypes.PrimitiveType; import org.gcube.dataanalysis.ecoengine.datatypes.PrimitiveType;
import org.gcube.dataanalysis.ecoengine.datatypes.StatisticalType; import org.gcube.dataanalysis.ecoengine.datatypes.StatisticalType;
import org.gcube.dataanalysis.ecoengine.datatypes.enumtypes.PrimitiveTypes; import org.gcube.dataanalysis.ecoengine.datatypes.enumtypes.PrimitiveTypes;
import org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm; import org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalInfraAlgorithm;
import org.gcube.resources.discovery.client.api.DiscoveryException; import org.gcube.resources.discovery.client.api.DiscoveryException;
import org.gcube.resources.discovery.client.api.InvalidResultException; import org.gcube.resources.discovery.client.api.InvalidResultException;
import org.hibernate.HibernateException; import org.hibernate.HibernateException;
@ -24,7 +23,7 @@ import org.hibernate.HibernateException;
* class that allows to retrieve schema's names of a chosen database. In this * class that allows to retrieve schema's names of a chosen database. In this
* case the database's type is "postgresql" * case the database's type is "postgresql"
*/ */
public class ListSchemas extends StandardLocalExternalAlgorithm { public class ListSchemas extends StandardLocalInfraAlgorithm {
private static final String SCHEMA_NAME = "Schema Name "; private static final String SCHEMA_NAME = "Schema Name ";
private LinkedHashMap<String, StatisticalType> map = new LinkedHashMap<String, StatisticalType>(); private LinkedHashMap<String, StatisticalType> map = new LinkedHashMap<String, StatisticalType>();
@ -34,7 +33,7 @@ public class ListSchemas extends StandardLocalExternalAlgorithm {
private String resourceName = null; private String resourceName = null;
private String databaseName = null; private String databaseName = null;
//private SessionFactory sf; // private SessionFactory sf;
@Override @Override
public void init() throws Exception { public void init() throws Exception {
@ -46,18 +45,6 @@ public class ListSchemas extends StandardLocalExternalAlgorithm {
AnalysisLogger.getLogger().debug( AnalysisLogger.getLogger().debug(
"In ListSchemas->scope set by config object: " + scope); "In ListSchemas->scope set by config object: " + scope);
if (scope == null || scope.length() == 0) {
scope = ScopeProvider.instance.get();
AnalysisLogger.getLogger().debug(
"In ListSchemas->scope set by ScopeProvider: " + scope);
} else {
ScopeProvider.instance.set(scope);
}
} }
@Override @Override
@ -97,10 +84,9 @@ public class ListSchemas extends StandardLocalExternalAlgorithm {
} }
for (int i = 0; i < listSchemas.size(); i++) { for (int i = 0; i < listSchemas.size(); i++) {
String schemaId = SCHEMA_NAME+(i+1); String schemaId = SCHEMA_NAME + (i + 1);
PrimitiveType val = new PrimitiveType(String.class.getName(), PrimitiveType val = new PrimitiveType(String.class.getName(),
null, PrimitiveTypes.STRING, schemaId, null, PrimitiveTypes.STRING, schemaId, schemaId);
schemaId);
val.setContent(listSchemas.get(i)); val.setContent(listSchemas.get(i));
@ -217,11 +203,11 @@ public class ListSchemas extends StandardLocalExternalAlgorithm {
} }
// finally { // finally {
// if (sf.isClosed() == false) { // if (sf.isClosed() == false) {
// mgt.closeConnection(); // mgt.closeConnection();
// } // }
// } // }
return listSchemas; return listSchemas;
@ -422,9 +408,8 @@ public class ListSchemas extends StandardLocalExternalAlgorithm {
String DatabaseURL = iterator.next(); String DatabaseURL = iterator.next();
String DatabaseName = iterator.next(); String DatabaseName = iterator.next();
mgt.createConnection(DatabaseUserName, mgt.createConnection(DatabaseUserName, DatabasePassword,
DatabasePassword, DatabaseDriver, DatabaseDialect, DatabaseURL, DatabaseDriver, DatabaseDialect, DatabaseURL, DatabaseName);
DatabaseName);
// if (sf.isClosed()){ // if (sf.isClosed()){
@ -434,40 +419,40 @@ public class ListSchemas extends StandardLocalExternalAlgorithm {
} }
private void normalizeDBInfo(DBResource resource) throws Exception { private void normalizeDBInfo(DBResource resource) throws Exception {
try{ try {
int ap = resource.getAccessPoints().size(); int ap = resource.getAccessPoints().size();
for (int i = 0; i < ap; i++) { for (int i = 0; i < ap; i++) {
resource.normalize(i); resource.normalize(i);
} }
}catch (Exception e) { } catch (Exception e) {
AnalysisLogger.getLogger().debug( AnalysisLogger.getLogger().debug(
"In ListSchemas->: Error in normalization process" "In ListSchemas->: Error in normalization process"
+ e.getMessage()); + e.getMessage());
throw e; throw e;
} }
// int ap = resource.getAccessPoints().size(); // int ap = resource.getAccessPoints().size();
// //
// for (int i = 0; i < ap; i++) { // for (int i = 0; i < ap; i++) {
// //
//// try { // // try {
// resource.normalize(i); // resource.normalize(i);
//// } catch (IOException e) { // // } catch (IOException e) {
// //
// // e.printStackTrace(); // // e.printStackTrace();
//// AnalysisLogger.getLogger().debug( // // AnalysisLogger.getLogger().debug(
//// "In ListTables->: Error in normalization process" // // "In ListTables->: Error in normalization process"
//// + e.getMessage()); // // + e.getMessage());
// //
//// throw e; // // throw e;
// //
//// } // // }
// //
// } // }
} }
} }

View File

@ -7,7 +7,6 @@ import java.util.LinkedHashMap;
import java.util.List; import java.util.List;
import java.util.UUID; import java.util.UUID;
import org.gcube.common.scope.api.ScopeProvider;
import org.gcube.contentmanagement.lexicalmatcher.utils.AnalysisLogger; import org.gcube.contentmanagement.lexicalmatcher.utils.AnalysisLogger;
import org.gcube.dataaccess.databases.access.DatabasesDiscoverer; import org.gcube.dataaccess.databases.access.DatabasesDiscoverer;
import org.gcube.dataaccess.databases.resources.DBResource; import org.gcube.dataaccess.databases.resources.DBResource;
@ -15,13 +14,13 @@ import org.gcube.dataaccess.databases.utils.DatabaseManagement;
import org.gcube.dataanalysis.ecoengine.datatypes.PrimitiveType; import org.gcube.dataanalysis.ecoengine.datatypes.PrimitiveType;
import org.gcube.dataanalysis.ecoengine.datatypes.StatisticalType; import org.gcube.dataanalysis.ecoengine.datatypes.StatisticalType;
import org.gcube.dataanalysis.ecoengine.datatypes.enumtypes.PrimitiveTypes; import org.gcube.dataanalysis.ecoengine.datatypes.enumtypes.PrimitiveTypes;
import org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm; import org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalInfraAlgorithm;
import org.gcube.resources.discovery.client.api.DiscoveryException; import org.gcube.resources.discovery.client.api.DiscoveryException;
import org.gcube.resources.discovery.client.api.InvalidResultException; import org.gcube.resources.discovery.client.api.InvalidResultException;
import org.hibernate.HibernateException; import org.hibernate.HibernateException;
/** Class that allows to retrieve the tables's names of a chosen database */ /** Class that allows to retrieve the tables's names of a chosen database */
public class ListTables extends StandardLocalExternalAlgorithm { public class ListTables extends StandardLocalInfraAlgorithm {
private static final String TABLE_NAME = "Table Name "; private static final String TABLE_NAME = "Table Name ";
private LinkedHashMap<String, StatisticalType> map = new LinkedHashMap<String, StatisticalType>(); private LinkedHashMap<String, StatisticalType> map = new LinkedHashMap<String, StatisticalType>();
@ -34,7 +33,7 @@ public class ListTables extends StandardLocalExternalAlgorithm {
private String databaseName = null; private String databaseName = null;
private String schemaName = null; private String schemaName = null;
//private SessionFactory sf; // private SessionFactory sf;
@Override @Override
public void init() throws Exception { public void init() throws Exception {
@ -46,19 +45,6 @@ public class ListTables extends StandardLocalExternalAlgorithm {
AnalysisLogger.getLogger().debug( AnalysisLogger.getLogger().debug(
"In ListTables->scope set by config object: " + scope); "In ListTables->scope set by config object: " + scope);
if (scope == null || scope.length() == 0) {
scope = ScopeProvider.instance.get();
AnalysisLogger.getLogger().debug(
"In ListTables->scope set by ScopeProvider: " + scope);
} else {
ScopeProvider.instance.set(scope);
}
} }
@Override @Override
@ -92,7 +78,7 @@ public class ListTables extends StandardLocalExternalAlgorithm {
if (driverInfo.toLowerCase().contains("postgres")) { if (driverInfo.toLowerCase().contains("postgres")) {
schemaName = getInputParameter("SchemaName"); schemaName = getInputParameter("SchemaName");
if(schemaName != null){ if (schemaName != null) {
schemaName = getInputParameter("SchemaName").trim(); schemaName = getInputParameter("SchemaName").trim();
} }
if ((schemaName == null) || (schemaName.equals(""))) { if ((schemaName == null) || (schemaName.equals(""))) {
@ -137,12 +123,11 @@ public class ListTables extends StandardLocalExternalAlgorithm {
} else { } else {
for (int i = 0; i < listTables.size(); i++) { for (int i = 0; i < listTables.size(); i++) {
String tableId = TABLE_NAME+(i+1); String tableId = TABLE_NAME + (i + 1);
PrimitiveType val = new PrimitiveType( PrimitiveType val = new PrimitiveType(
String.class.getName(), null, String.class.getName(), null,
PrimitiveTypes.STRING, tableId, PrimitiveTypes.STRING, tableId, tableId);
tableId);
val.setContent(listTables.get(i)); val.setContent(listTables.get(i));
@ -414,48 +399,47 @@ public class ListTables extends StandardLocalExternalAlgorithm {
String DatabaseURL = iterator.next(); String DatabaseURL = iterator.next();
String DatabaseName = iterator.next(); String DatabaseName = iterator.next();
mgt.createConnection(DatabaseUserName, mgt.createConnection(DatabaseUserName, DatabasePassword,
DatabasePassword, DatabaseDriver, DatabaseDialect, DatabaseURL, DatabaseDriver, DatabaseDialect, DatabaseURL, DatabaseName);
DatabaseName);
AnalysisLogger.getLogger().debug( AnalysisLogger.getLogger().debug(
"In ListTables->database " + DatabaseName + ": connected"); "In ListTables->database " + DatabaseName + ": connected");
} }
private void normalizeDBInfo(DBResource resource) throws Exception { private void normalizeDBInfo(DBResource resource) throws Exception {
try{ try {
int ap = resource.getAccessPoints().size(); int ap = resource.getAccessPoints().size();
for (int i = 0; i < ap; i++) { for (int i = 0; i < ap; i++) {
resource.normalize(i); resource.normalize(i);
} }
}catch (Exception e) { } catch (Exception e) {
AnalysisLogger.getLogger().debug( AnalysisLogger.getLogger().debug(
"In ListTables->: Error in normalization process" "In ListTables->: Error in normalization process"
+ e.getMessage()); + e.getMessage());
throw e; throw e;
} }
// int ap = resource.getAccessPoints().size(); // int ap = resource.getAccessPoints().size();
// //
// for (int i = 0; i < ap; i++) { // for (int i = 0; i < ap; i++) {
// //
// try { // try {
// resource.normalize(i); // resource.normalize(i);
// } catch (IOException e) { // } catch (IOException e) {
// // e.printStackTrace(); // // e.printStackTrace();
// //
// AnalysisLogger.getLogger().debug( // AnalysisLogger.getLogger().debug(
// "In ListTables->: Error in normalization process" // "In ListTables->: Error in normalization process"
// + e.getMessage()); // + e.getMessage());
// //
// throw e; // throw e;
// } // }
// //
// } // }
} }
} }

View File

@ -9,7 +9,6 @@ import java.util.LinkedHashMap;
import java.util.List; import java.util.List;
import java.util.UUID; import java.util.UUID;
import org.gcube.common.scope.api.ScopeProvider;
import org.gcube.contentmanagement.lexicalmatcher.utils.AnalysisLogger; import org.gcube.contentmanagement.lexicalmatcher.utils.AnalysisLogger;
import org.gcube.dataaccess.databases.access.DatabasesDiscoverer; import org.gcube.dataaccess.databases.access.DatabasesDiscoverer;
import org.gcube.dataaccess.databases.resources.DBResource; import org.gcube.dataaccess.databases.resources.DBResource;
@ -17,7 +16,7 @@ import org.gcube.dataaccess.databases.utils.DatabaseManagement;
import org.gcube.dataanalysis.ecoengine.datatypes.PrimitiveType; import org.gcube.dataanalysis.ecoengine.datatypes.PrimitiveType;
import org.gcube.dataanalysis.ecoengine.datatypes.StatisticalType; import org.gcube.dataanalysis.ecoengine.datatypes.StatisticalType;
import org.gcube.dataanalysis.ecoengine.datatypes.enumtypes.PrimitiveTypes; import org.gcube.dataanalysis.ecoengine.datatypes.enumtypes.PrimitiveTypes;
import org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm; import org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalInfraAlgorithm;
import org.gcube.resources.discovery.client.api.DiscoveryException; import org.gcube.resources.discovery.client.api.DiscoveryException;
import org.gcube.resources.discovery.client.api.InvalidResultException; import org.gcube.resources.discovery.client.api.InvalidResultException;
import org.hibernate.HibernateException; import org.hibernate.HibernateException;
@ -27,7 +26,7 @@ import org.hibernate.HibernateException;
* database. It retrieves 100 rows of a table randomly. * database. It retrieves 100 rows of a table randomly.
*/ */
public class RandomSampleOnTable extends StandardLocalExternalAlgorithm { public class RandomSampleOnTable extends StandardLocalInfraAlgorithm {
private LinkedHashMap<String, StatisticalType> map = new LinkedHashMap<String, StatisticalType>(); private LinkedHashMap<String, StatisticalType> map = new LinkedHashMap<String, StatisticalType>();
@ -39,7 +38,7 @@ public class RandomSampleOnTable extends StandardLocalExternalAlgorithm {
private String schemaName = null; private String schemaName = null;
private String tableName = null; private String tableName = null;
//private SessionFactory sf; // private SessionFactory sf;
// variable that keeps track of the driver information // variable that keeps track of the driver information
private String driverInfo; private String driverInfo;
@ -55,14 +54,6 @@ public class RandomSampleOnTable extends StandardLocalExternalAlgorithm {
"In RandomSmartSampleOnTable->scope set by config object: " "In RandomSmartSampleOnTable->scope set by config object: "
+ scope); + scope);
if (scope == null || scope.length() == 0) {
scope = ScopeProvider.instance.get();
AnalysisLogger.getLogger().debug(
"In RandomSmartSampleOnTable->scope set by ScopeProvider: "
+ scope);
} else {
ScopeProvider.instance.set(scope);
}
} }
@Override @Override
@ -81,7 +72,7 @@ public class RandomSampleOnTable extends StandardLocalExternalAlgorithm {
// check on table name field // check on table name field
tableName = getInputParameter("TableName"); tableName = getInputParameter("TableName");
if(tableName != null){ if (tableName != null) {
tableName = getInputParameter("TableName").trim(); tableName = getInputParameter("TableName").trim();
} }
if ((tableName == null) || (tableName.equals(""))) { if ((tableName == null) || (tableName.equals(""))) {
@ -91,7 +82,7 @@ public class RandomSampleOnTable extends StandardLocalExternalAlgorithm {
// check on schema name field // check on schema name field
if (driverInfo.toLowerCase().contains("postgres")) { if (driverInfo.toLowerCase().contains("postgres")) {
schemaName = getInputParameter("SchemaName"); schemaName = getInputParameter("SchemaName");
if(schemaName != null){ if (schemaName != null) {
schemaName = getInputParameter("SchemaName").trim(); schemaName = getInputParameter("SchemaName").trim();
} }
if ((schemaName == null) || (schemaName.equals(""))) { if ((schemaName == null) || (schemaName.equals(""))) {
@ -104,7 +95,7 @@ public class RandomSampleOnTable extends StandardLocalExternalAlgorithm {
// smart sample operation on table // smart sample operation on table
map = randomSampleOnTable(); map = randomSampleOnTable();
} catch (HibernateException h) { } catch (HibernateException h) {
AnalysisLogger.getLogger().debug( AnalysisLogger.getLogger().debug(
"In RandomSmartSampleOnTable-> ERROR " + h.getMessage()); "In RandomSmartSampleOnTable-> ERROR " + h.getMessage());
@ -278,34 +269,34 @@ public class RandomSampleOnTable extends StandardLocalExternalAlgorithm {
// to normalize the information related to a database // to normalize the information related to a database
private void normalizeDBInfo(DBResource resource) throws Exception { private void normalizeDBInfo(DBResource resource) throws Exception {
try{ try {
int ap = resource.getAccessPoints().size(); int ap = resource.getAccessPoints().size();
for (int i = 0; i < ap; i++) { for (int i = 0; i < ap; i++) {
resource.normalize(i); resource.normalize(i);
} }
}catch (Exception e) { } catch (Exception e) {
AnalysisLogger.getLogger().debug( AnalysisLogger.getLogger().debug(
"In RandomSampleOnTable->: Error in normalization process" "In RandomSampleOnTable->: Error in normalization process"
+ e.getMessage()); + e.getMessage());
throw e; throw e;
} }
// int ap = resource.getAccessPoints().size(); // int ap = resource.getAccessPoints().size();
// for (int i = 0; i < ap; i++) { // for (int i = 0; i < ap; i++) {
// try { // try {
// resource.normalize(i); // resource.normalize(i);
// } catch (IOException e) { // } catch (IOException e) {
// // e.printStackTrace(); // // e.printStackTrace();
// AnalysisLogger.getLogger().debug( // AnalysisLogger.getLogger().debug(
// "In RandomSampleOnTable->: Error in normalization process" // "In RandomSampleOnTable->: Error in normalization process"
// + e.getMessage()); // + e.getMessage());
// throw e; // throw e;
// } // }
// } // }
} }
// create the database's connection // create the database's connection
@ -321,9 +312,8 @@ public class RandomSampleOnTable extends StandardLocalExternalAlgorithm {
String DatabaseURL = iterator.next(); String DatabaseURL = iterator.next();
String DatabaseName = iterator.next(); String DatabaseName = iterator.next();
mgt.createConnection(DatabaseUserName, mgt.createConnection(DatabaseUserName, DatabasePassword,
DatabasePassword, DatabaseDriver, DatabaseDialect, DatabaseURL, DatabaseDriver, DatabaseDialect, DatabaseURL, DatabaseName);
DatabaseName);
AnalysisLogger.getLogger().debug( AnalysisLogger.getLogger().debug(
"In RandomSampleOnTable->database " + DatabaseName "In RandomSampleOnTable->database " + DatabaseName
@ -386,7 +376,7 @@ public class RandomSampleOnTable extends StandardLocalExternalAlgorithm {
// // check the encoded value // // check the encoded value
// AnalysisLogger.getLogger().debug( // AnalysisLogger.getLogger().debug(
// "In RandomSampleOnTable->string encoded: " + encoded); // "In RandomSampleOnTable->string encoded: " + encoded);
String row="Row "+Integer.toString(i+1); String row = "Row " + Integer.toString(i + 1);
PrimitiveType val1 = new PrimitiveType(String.class.getName(), PrimitiveType val1 = new PrimitiveType(String.class.getName(),
encoded, PrimitiveTypes.STRING, row, row); encoded, PrimitiveTypes.STRING, row, row);
mapResults.put(String.valueOf(i), val1); mapResults.put(String.valueOf(i), val1);
@ -398,10 +388,9 @@ public class RandomSampleOnTable extends StandardLocalExternalAlgorithm {
} }
// to add the file // to add the file
PrimitiveType fileResult = new PrimitiveType(File.class.getName(), PrimitiveType fileResult = new PrimitiveType(File.class.getName(),
mgt.getFile(), PrimitiveTypes.FILE, "File", mgt.getFile(), PrimitiveTypes.FILE, "File", "File");
"File"); mapResults.put("File", fileResult);
mapResults.put("File", fileResult);
return mapResults; return mapResults;

View File

@ -9,7 +9,6 @@ import java.util.LinkedHashMap;
import java.util.List; import java.util.List;
import java.util.UUID; import java.util.UUID;
import org.gcube.common.scope.api.ScopeProvider;
import org.gcube.contentmanagement.lexicalmatcher.utils.AnalysisLogger; import org.gcube.contentmanagement.lexicalmatcher.utils.AnalysisLogger;
import org.gcube.dataaccess.databases.access.DatabasesDiscoverer; import org.gcube.dataaccess.databases.access.DatabasesDiscoverer;
import org.gcube.dataaccess.databases.resources.DBResource; import org.gcube.dataaccess.databases.resources.DBResource;
@ -17,7 +16,7 @@ import org.gcube.dataaccess.databases.utils.DatabaseManagement;
import org.gcube.dataanalysis.ecoengine.datatypes.PrimitiveType; import org.gcube.dataanalysis.ecoengine.datatypes.PrimitiveType;
import org.gcube.dataanalysis.ecoengine.datatypes.StatisticalType; import org.gcube.dataanalysis.ecoengine.datatypes.StatisticalType;
import org.gcube.dataanalysis.ecoengine.datatypes.enumtypes.PrimitiveTypes; import org.gcube.dataanalysis.ecoengine.datatypes.enumtypes.PrimitiveTypes;
import org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm; import org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalInfraAlgorithm;
import org.gcube.resources.discovery.client.api.DiscoveryException; import org.gcube.resources.discovery.client.api.DiscoveryException;
import org.gcube.resources.discovery.client.api.InvalidResultException; import org.gcube.resources.discovery.client.api.InvalidResultException;
import org.hibernate.HibernateException; import org.hibernate.HibernateException;
@ -26,7 +25,7 @@ import org.hibernate.HibernateException;
* Class that allows to perform a sample operation on a table of a chosen * Class that allows to perform a sample operation on a table of a chosen
* database. It retrieves the first 100 rows of a table. * database. It retrieves the first 100 rows of a table.
*/ */
public class SampleOnTable extends StandardLocalExternalAlgorithm { public class SampleOnTable extends StandardLocalInfraAlgorithm {
private LinkedHashMap<String, StatisticalType> map = new LinkedHashMap<String, StatisticalType>(); private LinkedHashMap<String, StatisticalType> map = new LinkedHashMap<String, StatisticalType>();
@ -38,7 +37,7 @@ public class SampleOnTable extends StandardLocalExternalAlgorithm {
private String schemaName = null; private String schemaName = null;
private String tableName = null; private String tableName = null;
//private SessionFactory sf; // private SessionFactory sf;
// variable that keeps track of the driver information // variable that keeps track of the driver information
private String driverInfo; private String driverInfo;
@ -52,13 +51,6 @@ public class SampleOnTable extends StandardLocalExternalAlgorithm {
AnalysisLogger.getLogger().debug( AnalysisLogger.getLogger().debug(
"In SampleOnTable->scope set by config object: " + scope); "In SampleOnTable->scope set by config object: " + scope);
if (scope == null || scope.length() == 0) {
scope = ScopeProvider.instance.get();
AnalysisLogger.getLogger().debug(
"In SampleOnTable->scope set by ScopeProvider: " + scope);
} else {
ScopeProvider.instance.set(scope);
}
} }
@Override @Override
@ -76,7 +68,7 @@ public class SampleOnTable extends StandardLocalExternalAlgorithm {
// check on table name field // check on table name field
tableName = getInputParameter("TableName"); tableName = getInputParameter("TableName");
if(tableName != null){ if (tableName != null) {
tableName = getInputParameter("TableName").trim(); tableName = getInputParameter("TableName").trim();
} }
if ((tableName == null) || (tableName.equals(""))) { if ((tableName == null) || (tableName.equals(""))) {
@ -86,7 +78,7 @@ public class SampleOnTable extends StandardLocalExternalAlgorithm {
// check on schema name field // check on schema name field
if (driverInfo.toLowerCase().contains("postgres")) { if (driverInfo.toLowerCase().contains("postgres")) {
schemaName = getInputParameter("SchemaName"); schemaName = getInputParameter("SchemaName");
if(schemaName != null){ if (schemaName != null) {
schemaName = getInputParameter("SchemaName").trim(); schemaName = getInputParameter("SchemaName").trim();
} }
if ((schemaName == null) || (schemaName.equals(""))) { if ((schemaName == null) || (schemaName.equals(""))) {
@ -99,7 +91,7 @@ public class SampleOnTable extends StandardLocalExternalAlgorithm {
// sample operation on table // sample operation on table
map = sampleOnTable(); map = sampleOnTable();
} catch (HibernateException h) { } catch (HibernateException h) {
AnalysisLogger.getLogger().debug( AnalysisLogger.getLogger().debug(
"In SampleOnTable-> ERROR " + h.getMessage()); "In SampleOnTable-> ERROR " + h.getMessage());
@ -159,7 +151,8 @@ public class SampleOnTable extends StandardLocalExternalAlgorithm {
// generate a primitive type for the collection // generate a primitive type for the collection
PrimitiveType output = new PrimitiveType(LinkedHashMap.class.getName(), PrimitiveType output = new PrimitiveType(LinkedHashMap.class.getName(),
map, PrimitiveTypes.MAP, "ResultsMap"+UUID.randomUUID(), "Results Map"); map, PrimitiveTypes.MAP, "ResultsMap" + UUID.randomUUID(),
"Results Map");
return output; return output;
} }
@ -274,34 +267,34 @@ public class SampleOnTable extends StandardLocalExternalAlgorithm {
// to normalize the information related to a database // to normalize the information related to a database
private void normalizeDBInfo(DBResource resource) throws Exception { private void normalizeDBInfo(DBResource resource) throws Exception {
try{ try {
int ap = resource.getAccessPoints().size(); int ap = resource.getAccessPoints().size();
for (int i = 0; i < ap; i++) { for (int i = 0; i < ap; i++) {
resource.normalize(i); resource.normalize(i);
} }
}catch (Exception e) { } catch (Exception e) {
AnalysisLogger.getLogger().debug( AnalysisLogger.getLogger().debug(
"In SampleOnTable->: Error in normalization process" "In SampleOnTable->: Error in normalization process"
+ e.getMessage()); + e.getMessage());
throw e; throw e;
} }
// int ap = resource.getAccessPoints().size(); // int ap = resource.getAccessPoints().size();
// for (int i = 0; i < ap; i++) { // for (int i = 0; i < ap; i++) {
// try { // try {
// resource.normalize(i); // resource.normalize(i);
// } catch (IOException e) { // } catch (IOException e) {
// // e.printStackTrace(); // // e.printStackTrace();
// AnalysisLogger.getLogger().debug( // AnalysisLogger.getLogger().debug(
// "In SampleOnTable->: Error in normalization process" // "In SampleOnTable->: Error in normalization process"
// + e.getMessage()); // + e.getMessage());
// throw e; // throw e;
// } // }
// } // }
} }
// create the database's connection // create the database's connection
@ -317,9 +310,8 @@ public class SampleOnTable extends StandardLocalExternalAlgorithm {
String DatabaseURL = iterator.next(); String DatabaseURL = iterator.next();
String DatabaseName = iterator.next(); String DatabaseName = iterator.next();
mgt.createConnection(DatabaseUserName, mgt.createConnection(DatabaseUserName, DatabasePassword,
DatabasePassword, DatabaseDriver, DatabaseDialect, DatabaseURL, DatabaseDriver, DatabaseDialect, DatabaseURL, DatabaseName);
DatabaseName);
AnalysisLogger.getLogger().debug( AnalysisLogger.getLogger().debug(
"In SampleOnTable->database " + DatabaseName + ": connected"); "In SampleOnTable->database " + DatabaseName + ": connected");
@ -356,7 +348,7 @@ public class SampleOnTable extends StandardLocalExternalAlgorithm {
// to add the results to the variable map // to add the results to the variable map
// to add the map // to add the map
HashMap<String, String> mapResult = new HashMap<String, String>(); HashMap<String, String> mapResult = new HashMap<String, String>();
mapResult = mgt.getMapSampleTableResult(); mapResult = mgt.getMapSampleTableResult();
@ -379,8 +371,8 @@ public class SampleOnTable extends StandardLocalExternalAlgorithm {
// // check encoded value // // check encoded value
// AnalysisLogger.getLogger().debug( // AnalysisLogger.getLogger().debug(
// "In SampleOnTable->string encoded: " + encoded); // "In SampleOnTable->string encoded: " + encoded);
String row="Row "+Integer.toString(i+1); String row = "Row " + Integer.toString(i + 1);
PrimitiveType val1 = new PrimitiveType(String.class.getName(), PrimitiveType val1 = new PrimitiveType(String.class.getName(),
encoded, PrimitiveTypes.STRING, row, row); encoded, PrimitiveTypes.STRING, row, row);
mapResults.put(String.valueOf(i), val1); mapResults.put(String.valueOf(i), val1);
@ -394,8 +386,7 @@ public class SampleOnTable extends StandardLocalExternalAlgorithm {
// to add the file // to add the file
PrimitiveType fileResult = new PrimitiveType(File.class.getName(), PrimitiveType fileResult = new PrimitiveType(File.class.getName(),
mgt.getFile(), PrimitiveTypes.FILE, "File", mgt.getFile(), PrimitiveTypes.FILE, "File", "File");
"File");
mapResults.put("File", fileResult); mapResults.put("File", fileResult);
return mapResults; return mapResults;

View File

@ -9,7 +9,6 @@ import java.util.LinkedHashMap;
import java.util.List; import java.util.List;
import java.util.UUID; import java.util.UUID;
import org.gcube.common.scope.api.ScopeProvider;
import org.gcube.contentmanagement.lexicalmatcher.utils.AnalysisLogger; import org.gcube.contentmanagement.lexicalmatcher.utils.AnalysisLogger;
import org.gcube.dataaccess.databases.access.DatabasesDiscoverer; import org.gcube.dataaccess.databases.access.DatabasesDiscoverer;
import org.gcube.dataaccess.databases.resources.DBResource; import org.gcube.dataaccess.databases.resources.DBResource;
@ -17,7 +16,7 @@ import org.gcube.dataaccess.databases.utils.DatabaseManagement;
import org.gcube.dataanalysis.ecoengine.datatypes.PrimitiveType; import org.gcube.dataanalysis.ecoengine.datatypes.PrimitiveType;
import org.gcube.dataanalysis.ecoengine.datatypes.StatisticalType; import org.gcube.dataanalysis.ecoengine.datatypes.StatisticalType;
import org.gcube.dataanalysis.ecoengine.datatypes.enumtypes.PrimitiveTypes; import org.gcube.dataanalysis.ecoengine.datatypes.enumtypes.PrimitiveTypes;
import org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm; import org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalInfraAlgorithm;
import org.gcube.resources.discovery.client.api.DiscoveryException; import org.gcube.resources.discovery.client.api.DiscoveryException;
import org.gcube.resources.discovery.client.api.InvalidResultException; import org.gcube.resources.discovery.client.api.InvalidResultException;
import org.hibernate.HibernateException; import org.hibernate.HibernateException;
@ -28,7 +27,7 @@ import org.hibernate.HibernateException;
* number of columns not null. * number of columns not null.
*/ */
public class SmartSampleOnTable extends StandardLocalExternalAlgorithm { public class SmartSampleOnTable extends StandardLocalInfraAlgorithm {
private LinkedHashMap<String, StatisticalType> map = new LinkedHashMap<String, StatisticalType>(); private LinkedHashMap<String, StatisticalType> map = new LinkedHashMap<String, StatisticalType>();
@ -40,7 +39,7 @@ public class SmartSampleOnTable extends StandardLocalExternalAlgorithm {
private String schemaName = null; private String schemaName = null;
private String tableName = null; private String tableName = null;
//private SessionFactory sf; // private SessionFactory sf;
// variable that keeps track of the driver information // variable that keeps track of the driver information
private String driverInfo; private String driverInfo;
@ -55,14 +54,6 @@ public class SmartSampleOnTable extends StandardLocalExternalAlgorithm {
AnalysisLogger.getLogger().debug( AnalysisLogger.getLogger().debug(
"In SmartSampleOnTable->scope set by config object: " + scope); "In SmartSampleOnTable->scope set by config object: " + scope);
if (scope == null || scope.length() == 0) {
scope = ScopeProvider.instance.get();
AnalysisLogger.getLogger().debug(
"In SmartSampleOnTable->scope set by ScopeProvider: "
+ scope);
} else {
ScopeProvider.instance.set(scope);
}
} }
@Override @Override
@ -75,13 +66,13 @@ public class SmartSampleOnTable extends StandardLocalExternalAlgorithm {
AnalysisLogger.getLogger().debug("In SmartSampleOnTable->Processing"); AnalysisLogger.getLogger().debug("In SmartSampleOnTable->Processing");
try { try {
// retrieve information // retrieve information
List<String> Info = retrieveInfo(); List<String> Info = retrieveInfo();
// check on table name field // check on table name field
tableName = getInputParameter("TableName"); tableName = getInputParameter("TableName");
if(tableName != null){ if (tableName != null) {
tableName = getInputParameter("TableName").trim(); tableName = getInputParameter("TableName").trim();
} }
if ((tableName == null) || (tableName.equals(""))) { if ((tableName == null) || (tableName.equals(""))) {
@ -91,7 +82,7 @@ public class SmartSampleOnTable extends StandardLocalExternalAlgorithm {
// check on schema name field // check on schema name field
if (driverInfo.toLowerCase().contains("postgres")) { if (driverInfo.toLowerCase().contains("postgres")) {
schemaName = getInputParameter("SchemaName"); schemaName = getInputParameter("SchemaName");
if(schemaName != null){ if (schemaName != null) {
schemaName = getInputParameter("SchemaName").trim(); schemaName = getInputParameter("SchemaName").trim();
} }
if ((schemaName == null) || (schemaName.equals(""))) { if ((schemaName == null) || (schemaName.equals(""))) {
@ -104,7 +95,7 @@ public class SmartSampleOnTable extends StandardLocalExternalAlgorithm {
// smart sample operation on table // smart sample operation on table
map = smartSampleOnTable(); map = smartSampleOnTable();
} catch (HibernateException h) { } catch (HibernateException h) {
AnalysisLogger.getLogger().debug( AnalysisLogger.getLogger().debug(
"In SmartSampleOnTable-> ERROR " + h.getMessage()); "In SmartSampleOnTable-> ERROR " + h.getMessage());
@ -162,7 +153,8 @@ public class SmartSampleOnTable extends StandardLocalExternalAlgorithm {
// generate a primitive type for the collection // generate a primitive type for the collection
PrimitiveType output = new PrimitiveType(LinkedHashMap.class.getName(), PrimitiveType output = new PrimitiveType(LinkedHashMap.class.getName(),
map, PrimitiveTypes.MAP, "ResultsMap"+UUID.randomUUID(), "Results Map"); map, PrimitiveTypes.MAP, "ResultsMap" + UUID.randomUUID(),
"Results Map");
return output; return output;
} }
@ -204,7 +196,7 @@ public class SmartSampleOnTable extends StandardLocalExternalAlgorithm {
// list that contains information useful for the connection // list that contains information useful for the connection
List<String> info = new ArrayList<String>(); List<String> info = new ArrayList<String>();
check: for (int i = 0; i < resources.size(); i++) { check: for (int i = 0; i < resources.size(); i++) {
if (resources.get(i).getResourceName().toLowerCase() if (resources.get(i).getResourceName().toLowerCase()
@ -278,34 +270,34 @@ public class SmartSampleOnTable extends StandardLocalExternalAlgorithm {
// to normalize the information related to a database // to normalize the information related to a database
private void normalizeDBInfo(DBResource resource) throws Exception { private void normalizeDBInfo(DBResource resource) throws Exception {
try{ try {
int ap = resource.getAccessPoints().size(); int ap = resource.getAccessPoints().size();
for (int i = 0; i < ap; i++) { for (int i = 0; i < ap; i++) {
resource.normalize(i); resource.normalize(i);
} }
}catch (Exception e) { } catch (Exception e) {
AnalysisLogger.getLogger().debug( AnalysisLogger.getLogger().debug(
"In SmartSampleOnTable->: Error in normalization process" "In SmartSampleOnTable->: Error in normalization process"
+ e.getMessage()); + e.getMessage());
throw e; throw e;
} }
// int ap = resource.getAccessPoints().size(); // int ap = resource.getAccessPoints().size();
// for (int i = 0; i < ap; i++) { // for (int i = 0; i < ap; i++) {
// try { // try {
// resource.normalize(i); // resource.normalize(i);
// } catch (IOException e) { // } catch (IOException e) {
// // e.printStackTrace(); // // e.printStackTrace();
// AnalysisLogger.getLogger().debug( // AnalysisLogger.getLogger().debug(
// "In SmartSampleOnTable->: Error in normalization process" // "In SmartSampleOnTable->: Error in normalization process"
// + e.getMessage()); // + e.getMessage());
// throw e; // throw e;
// } // }
// } // }
} }
// create the database's connection // create the database's connection
@ -321,14 +313,13 @@ public class SmartSampleOnTable extends StandardLocalExternalAlgorithm {
String DatabaseURL = iterator.next(); String DatabaseURL = iterator.next();
String DatabaseName = iterator.next(); String DatabaseName = iterator.next();
mgt.createConnection(DatabaseUserName, mgt.createConnection(DatabaseUserName, DatabasePassword,
DatabasePassword, DatabaseDriver, DatabaseDialect, DatabaseURL, DatabaseDriver, DatabaseDialect, DatabaseURL, DatabaseName);
DatabaseName);
AnalysisLogger.getLogger().debug( AnalysisLogger.getLogger().debug(
"In SmartSampleOnTable->database " + DatabaseName "In SmartSampleOnTable->database " + DatabaseName
+ ": connected"); + ": connected");
} }
// to perform the sample operation on the table // to perform the sample operation on the table
private LinkedHashMap<String, StatisticalType> smartSampleOnTable() private LinkedHashMap<String, StatisticalType> smartSampleOnTable()
@ -385,7 +376,7 @@ public class SmartSampleOnTable extends StandardLocalExternalAlgorithm {
// // check encoded value // // check encoded value
// AnalysisLogger.getLogger().debug( // AnalysisLogger.getLogger().debug(
// "In SmartSampleOnTable->string encoded: " + encoded); // "In SmartSampleOnTable->string encoded: " + encoded);
String row="Row "+Integer.toString(i+1); String row = "Row " + Integer.toString(i + 1);
PrimitiveType val1 = new PrimitiveType(String.class.getName(), PrimitiveType val1 = new PrimitiveType(String.class.getName(),
encoded, PrimitiveTypes.STRING, row, row); encoded, PrimitiveTypes.STRING, row, row);
mapResults.put(String.valueOf(i), val1); mapResults.put(String.valueOf(i), val1);
@ -399,8 +390,7 @@ public class SmartSampleOnTable extends StandardLocalExternalAlgorithm {
// to add the file // to add the file
PrimitiveType fileResult = new PrimitiveType(File.class.getName(), PrimitiveType fileResult = new PrimitiveType(File.class.getName(),
mgt.getFile(), PrimitiveTypes.FILE, "File", mgt.getFile(), PrimitiveTypes.FILE, "File", "File");
"File");
mapResults.put("File", fileResult); mapResults.put("File", fileResult);
return mapResults; return mapResults;

View File

@ -13,7 +13,6 @@ import java.util.Timer;
import java.util.TimerTask; import java.util.TimerTask;
import java.util.UUID; import java.util.UUID;
import org.gcube.common.scope.api.ScopeProvider;
import org.gcube.contentmanagement.lexicalmatcher.utils.AnalysisLogger; import org.gcube.contentmanagement.lexicalmatcher.utils.AnalysisLogger;
import org.gcube.dataaccess.databases.access.DatabasesDiscoverer; import org.gcube.dataaccess.databases.access.DatabasesDiscoverer;
import org.gcube.dataaccess.databases.lexer.MySQLLexicalAnalyzer; import org.gcube.dataaccess.databases.lexer.MySQLLexicalAnalyzer;
@ -23,7 +22,7 @@ import org.gcube.dataaccess.databases.utils.DatabaseManagement;
import org.gcube.dataanalysis.ecoengine.datatypes.PrimitiveType; import org.gcube.dataanalysis.ecoengine.datatypes.PrimitiveType;
import org.gcube.dataanalysis.ecoengine.datatypes.StatisticalType; import org.gcube.dataanalysis.ecoengine.datatypes.StatisticalType;
import org.gcube.dataanalysis.ecoengine.datatypes.enumtypes.PrimitiveTypes; import org.gcube.dataanalysis.ecoengine.datatypes.enumtypes.PrimitiveTypes;
import org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm; import org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalInfraAlgorithm;
import org.gcube.resources.discovery.client.api.DiscoveryException; import org.gcube.resources.discovery.client.api.DiscoveryException;
import org.gcube.resources.discovery.client.api.InvalidResultException; import org.gcube.resources.discovery.client.api.InvalidResultException;
import org.hibernate.HibernateException; import org.hibernate.HibernateException;
@ -35,12 +34,13 @@ import com.adventnet.swissqlapi.sql.parser.ParseException;
* Class that allows to submit a query. It retrieves results in a file and in a * Class that allows to submit a query. It retrieves results in a file and in a
* map. * map.
*/ */
public class SubmitQuery extends StandardLocalExternalAlgorithm { public class SubmitQuery extends StandardLocalInfraAlgorithm {
private static final String FILE = "File"; private static final String FILE = "File";
private static final String TOTAL_ROWS = "Total Rows"; private static final String TOTAL_ROWS = "Total Rows";
static long maximum_execution_time = 30*60*1000; //time to stop execution query static long maximum_execution_time = 30 * 60 * 1000; // time to stop
// execution query
private LinkedHashMap<String, StatisticalType> map = new LinkedHashMap<String, StatisticalType>(); private LinkedHashMap<String, StatisticalType> map = new LinkedHashMap<String, StatisticalType>();
// object that allows to manage some operations on a database // object that allows to manage some operations on a database
private DatabaseManagement mgt; private DatabaseManagement mgt;
@ -51,8 +51,8 @@ public class SubmitQuery extends StandardLocalExternalAlgorithm {
// database's parameters specified by the user // database's parameters specified by the user
private String resourceName = null; private String resourceName = null;
private String databaseName = null; private String databaseName = null;
//private String schemaName = null; // private String schemaName = null;
//private String tableName = null; // private String tableName = null;
private String query = null; private String query = null;
private String valueReadOnly = "Read-Only Query"; private String valueReadOnly = "Read-Only Query";
@ -66,16 +66,16 @@ public class SubmitQuery extends StandardLocalExternalAlgorithm {
// variable used to filter the disallowed queries // variable used to filter the disallowed queries
private boolean NotAllowedQuery = false; private boolean NotAllowedQuery = false;
//class for the timer to stop execution query // class for the timer to stop execution query
private class ExecutionStopper extends TimerTask { private class ExecutionStopper extends TimerTask {
@Override @Override
public void run() { public void run() {
AnalysisLogger.getLogger().debug("ExecutionStopper: Stopping execution"); AnalysisLogger.getLogger().debug(
"ExecutionStopper: Stopping execution");
shutdown(); shutdown();
} }
} }
@Override @Override
public void init() throws Exception { public void init() throws Exception {
@ -86,14 +86,6 @@ public class SubmitQuery extends StandardLocalExternalAlgorithm {
AnalysisLogger.getLogger().debug( AnalysisLogger.getLogger().debug(
"In SubmitQuery->scope set by config object: " + scope); "In SubmitQuery->scope set by config object: " + scope);
if (scope == null || scope.length() == 0) {
scope = ScopeProvider.instance.get();
AnalysisLogger.getLogger().debug(
"In SubmitQuery->scope set by ScopeProvider: " + scope);
} else {
ScopeProvider.instance.set(scope);
}
valueRO = config.getParam(valueReadOnly); valueRO = config.getParam(valueReadOnly);
valueSC = config.getParam(smartCorrection); valueSC = config.getParam(smartCorrection);
} }
@ -109,10 +101,10 @@ public class SubmitQuery extends StandardLocalExternalAlgorithm {
HibernateException { HibernateException {
AnalysisLogger.getLogger().debug("In SubmitQuery->Processing"); AnalysisLogger.getLogger().debug("In SubmitQuery->Processing");
Timer stopper = new Timer(); Timer stopper = new Timer();
stopper.schedule(new ExecutionStopper(),maximum_execution_time); stopper.schedule(new ExecutionStopper(), maximum_execution_time);
try { try {
// retrieve information // retrieve information
List<String> Info = retrieveInfo(); List<String> Info = retrieveInfo();
@ -123,8 +115,8 @@ public class SubmitQuery extends StandardLocalExternalAlgorithm {
// submit a query // submit a query
map = submitQuery(); map = submitQuery();
// // close the connection // // close the connection
// dbconnection.close(); // dbconnection.close();
} catch (HibernateException h) { } catch (HibernateException h) {
@ -182,19 +174,23 @@ public class SubmitQuery extends StandardLocalExternalAlgorithm {
throw e4; throw e4;
} finally { } finally {
if (dbconnection!=null) { if (dbconnection != null) {
dbconnection.close(); dbconnection.close();
AnalysisLogger.getLogger().debug("In SubmitQuery-> Connection closed"); AnalysisLogger.getLogger().debug(
dbconnection=null; "In SubmitQuery-> Connection closed");
dbconnection = null;
} }
//remove the timer if the execution query has already terminated // remove the timer if the execution query has already terminated
if (stopper!=null){ if (stopper != null) {
try{ try {
stopper.cancel(); stopper.cancel();
stopper.purge(); stopper.purge();
AnalysisLogger.getLogger().debug("In SubmitQuery-> Execution stopper terminated"); AnalysisLogger.getLogger().debug(
}catch(Exception e){ "In SubmitQuery-> Execution stopper terminated");
AnalysisLogger.getLogger().debug("In SubmitQuery-> Could not stop execution stopper "+e.getMessage() ); } catch (Exception e) {
AnalysisLogger.getLogger().debug(
"In SubmitQuery-> Could not stop execution stopper "
+ e.getMessage());
} }
} }
} }
@ -205,7 +201,8 @@ public class SubmitQuery extends StandardLocalExternalAlgorithm {
AnalysisLogger.getLogger().debug("In SubmitQuery->retrieving outputs"); AnalysisLogger.getLogger().debug("In SubmitQuery->retrieving outputs");
// generate a primitive type for the collection // generate a primitive type for the collection
PrimitiveType output = new PrimitiveType(LinkedHashMap.class.getName(), PrimitiveType output = new PrimitiveType(LinkedHashMap.class.getName(),
map, PrimitiveTypes.MAP, "ResultsMap"+UUID.randomUUID(), "Results Map"); map, PrimitiveTypes.MAP, "ResultsMap" + UUID.randomUUID(),
"Results Map");
return output; return output;
} }
@ -295,16 +292,19 @@ public class SubmitQuery extends StandardLocalExternalAlgorithm {
@Override @Override
public void shutdown() { public void shutdown() {
AnalysisLogger.getLogger().debug("In SubmitQuery->Shutdown"); AnalysisLogger.getLogger().debug("In SubmitQuery->Shutdown");
try{ try {
if (dbconnection!=null) { if (dbconnection != null) {
dbconnection.close(); dbconnection.close();
AnalysisLogger.getLogger().debug("In SubmitQuery-> Connection closed"); AnalysisLogger.getLogger().debug(
dbconnection=null; "In SubmitQuery-> Connection closed");
} dbconnection = null;
}catch(Exception e){ }
AnalysisLogger.getLogger().debug("In SubmitQuery->Unable to close connection "+e.getMessage()); } catch (Exception e) {
AnalysisLogger.getLogger().debug(
"In SubmitQuery->Unable to close connection "
+ e.getMessage());
} }
} }
@ -345,7 +345,7 @@ public class SubmitQuery extends StandardLocalExternalAlgorithm {
.equals(resourceName.toLowerCase())) { .equals(resourceName.toLowerCase())) {
normalizeDBInfo(resources.get(i)); normalizeDBInfo(resources.get(i));
for (int j = 0; j < resources.get(i).getAccessPoints().size(); j++) { for (int j = 0; j < resources.get(i).getAccessPoints().size(); j++) {
if (resources.get(i).getAccessPoints().get(j) if (resources.get(i).getAccessPoints().get(j)
.getDatabaseName().toLowerCase() .getDatabaseName().toLowerCase()
.equals(databaseName.toLowerCase())) { .equals(databaseName.toLowerCase())) {
@ -423,12 +423,13 @@ public class SubmitQuery extends StandardLocalExternalAlgorithm {
String DatabaseName = iterator.next(); String DatabaseName = iterator.next();
// Load the database driver // Load the database driver
Class.forName(DatabaseDriver) ; Class.forName(DatabaseDriver);
// Get a connection to the database // Get a connection to the database
Connection conn = DriverManager.getConnection(DatabaseURL,DatabaseUserName,DatabasePassword) ; Connection conn = DriverManager.getConnection(DatabaseURL,
if (conn!=null){ DatabaseUserName, DatabasePassword);
if (conn != null) {
AnalysisLogger.getLogger().debug( AnalysisLogger.getLogger().debug(
"In SubmitQuery->database " + DatabaseName + ": connected"); "In SubmitQuery->database " + DatabaseName + ": connected");
} }
return conn; return conn;
} }
@ -553,8 +554,8 @@ public class SubmitQuery extends StandardLocalExternalAlgorithm {
// result = mgt.submitQuery(query, tableName, schemaName, // result = mgt.submitQuery(query, tableName, schemaName,
// sf, config.getPersistencePath()); // sf, config.getPersistencePath());
result = mgt result = mgt.submitQuery(query, dbconnection,
.submitQuery(query, dbconnection, config.getPersistencePath()); config.getPersistencePath());
} }
if (driverInfo.toLowerCase().contains("mysql")) { if (driverInfo.toLowerCase().contains("mysql")) {
@ -564,8 +565,8 @@ public class SubmitQuery extends StandardLocalExternalAlgorithm {
// result = mgt.submitQuery(query, tableName, databaseName, // result = mgt.submitQuery(query, tableName, databaseName,
// sf, config.getPersistencePath()); // sf, config.getPersistencePath());
result = mgt result = mgt.submitQuery(query, dbconnection,
.submitQuery(query, dbconnection, config.getPersistencePath()); config.getPersistencePath());
} }
if (result == null) { if (result == null) {
@ -577,8 +578,9 @@ public class SubmitQuery extends StandardLocalExternalAlgorithm {
HashMap<String, String> mapResult = new HashMap<String, String>(); HashMap<String, String> mapResult = new HashMap<String, String>();
mapResult = mgt.getMapQueryResult(); mapResult = mgt.getMapQueryResult();
// System.out.println("map size alg with header: " + mapResult.size()); // System.out.println("map size alg with header: " +
// mapResult.size());
String encoded = null; String encoded = null;
encoded = new String(mapResult.get("HEADERS").getBytes(), "UTF-8"); encoded = new String(mapResult.get("HEADERS").getBytes(), "UTF-8");
@ -597,33 +599,31 @@ public class SubmitQuery extends StandardLocalExternalAlgorithm {
.getBytes(), "UTF-8"); .getBytes(), "UTF-8");
// // check the encoded value // // check the encoded value
// AnalysisLogger.getLogger().debug( // AnalysisLogger.getLogger().debug(
// "In RandomSampleOnTable->string encoded: " + encoded); // "In RandomSampleOnTable->string encoded: " + encoded);
String row="Row "+Integer.toString(i+1); String row = "Row " + Integer.toString(i + 1);
PrimitiveType val1 = new PrimitiveType(String.class.getName(), PrimitiveType val1 = new PrimitiveType(String.class.getName(),
encoded, PrimitiveTypes.STRING, row, row); encoded, PrimitiveTypes.STRING, row, row);
mapResults.put(String.valueOf(i), val1); mapResults.put(String.valueOf(i), val1);
// //check value contained in map // //check value contained in map
// String value = (String) val1.getContent(); // String value = (String) val1.getContent();
// //
// AnalysisLogger.getLogger().debug( // AnalysisLogger.getLogger().debug(
// "In RandomSampleOnTable->value: " + value); // "In RandomSampleOnTable->value: " + value);
} }
// to add the file // to add the file
PrimitiveType fileResult = new PrimitiveType fileResult = new PrimitiveType(File.class.getName(),
PrimitiveType(File.class.getName(), mgt.getFile(), PrimitiveTypes.FILE, FILE, FILE);
mgt.getFile(), PrimitiveTypes.FILE, FILE, mapResults.put(FILE, fileResult);
FILE);
mapResults.put(FILE, fileResult); // //to add the number of total rows for a result of a submit query
// operation
PrimitiveType totalRows = new PrimitiveType(String.class.getName(),
// //to add the number of total rows for a result of a submit query operation String.valueOf(mgt.getSubmitQueryTotalRows()),
PrimitiveType totalRows = new PrimitiveType(String.class.getName(), PrimitiveTypes.STRING, TOTAL_ROWS, TOTAL_ROWS);
String.valueOf(mgt.getSubmitQueryTotalRows()), PrimitiveTypes.STRING, TOTAL_ROWS,TOTAL_ROWS
);
mapResults.put(TOTAL_ROWS, totalRows); mapResults.put(TOTAL_ROWS, totalRows);
} }
return mapResults; return mapResults;
} }
@ -650,45 +650,44 @@ public class SubmitQuery extends StandardLocalExternalAlgorithm {
} }
private void normalizeDBInfo(DBResource resource) throws Exception { private void normalizeDBInfo(DBResource resource) throws Exception {
try {
try{
int ap = resource.getAccessPoints().size(); int ap = resource.getAccessPoints().size();
for (int i = 0; i < ap; i++) { for (int i = 0; i < ap; i++) {
resource.normalize(i); resource.normalize(i);
} }
}catch (Exception e) { } catch (Exception e) {
AnalysisLogger.getLogger().debug( AnalysisLogger.getLogger().debug(
"In SubmitQuery->: Error in normalization process" "In SubmitQuery->: Error in normalization process"
+ e.getMessage()); + e.getMessage());
throw e; throw e;
} }
// int ap = resource.getAccessPoints().size(); // int ap = resource.getAccessPoints().size();
// for (int i = 0; i < ap; i++) { // for (int i = 0; i < ap; i++) {
// try { // try {
// resource.normalize(i); // resource.normalize(i);
// } catch (IOException e) { // } catch (IOException e) {
// // e.printStackTrace(); // // e.printStackTrace();
// AnalysisLogger.getLogger().debug( // AnalysisLogger.getLogger().debug(
// "In SubmitQuery->: Error in normalization process" // "In SubmitQuery->: Error in normalization process"
// + e.getMessage()); // + e.getMessage());
// throw e; // throw e;
// } // }
// } // }
} }
// private void formatWithQuotes(String Query) { // private void formatWithQuotes(String Query) {
// if (driverInfo.toLowerCase().contains("postgres")) { // if (driverInfo.toLowerCase().contains("postgres")) {
// if (Query.contains(tableName)) { // if (Query.contains(tableName)) {
// query = Query.replaceAll(tableName, "\"" + tableName + "\""); // query = Query.replaceAll(tableName, "\"" + tableName + "\"");
// } // }
// if (driverInfo.toLowerCase().contains("mysql")) { // if (driverInfo.toLowerCase().contains("mysql")) {
// query = Query.replaceAll(tableName, "\"" + tableName + "\""); // query = Query.replaceAll(tableName, "\"" + tableName + "\"");
// } // }
// } // }
// } // }
} }

View File

@ -2,10 +2,10 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:35 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>All Classes (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>All Classes (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
</head> </head>
<body> <body>

View File

@ -2,10 +2,10 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:35 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>All Classes (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>All Classes (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
</head> </head>
<body> <body>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Constant Field Values (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>Constant Field Values (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Constant Field Values (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="Constant Field Values (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -112,6 +112,6 @@
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:35 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Deprecated List (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>Deprecated List (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Deprecated List (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="Deprecated List (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -112,6 +112,6 @@
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:35 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>API Help (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>API Help (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="API Help (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="API Help (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -217,6 +217,6 @@
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:35 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Index (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>Index (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="./stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="./stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Index (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="Index (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -524,6 +524,6 @@ the order they are declared.</div>
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,9 +2,9 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc on Tue Feb 28 17:15:35 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API</title> <title>DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API</title>
<script type="text/javascript"> <script type="text/javascript">
targetPage = "" + window.location.search; targetPage = "" + window.location.search;
if (targetPage != "" && targetPage != "undefined") if (targetPage != "" && targetPage != "undefined")

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:33 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>GetTableDetails (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>GetTableDetails (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="GetTableDetails (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="GetTableDetails (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -91,12 +91,17 @@
<li>org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm</li> <li>org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm</li>
<li> <li>
<ul class="inheritance"> <ul class="inheritance">
<li>org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalInfraAlgorithm</li>
<li>
<ul class="inheritance">
<li>org.gcube.dataaccess.algorithms.drmalgorithms.GetTableDetails</li> <li>org.gcube.dataaccess.algorithms.drmalgorithms.GetTableDetails</li>
</ul> </ul>
</li> </li>
</ul> </ul>
</li> </li>
</ul> </ul>
</li>
</ul>
<div class="description"> <div class="description">
<ul class="blockList"> <ul class="blockList">
<li class="blockList"> <li class="blockList">
@ -107,7 +112,7 @@
<hr> <hr>
<br> <br>
<pre>public class <span class="strong">GetTableDetails</span> <pre>public class <span class="strong">GetTableDetails</span>
extends org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm</pre> extends org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalInfraAlgorithm</pre>
<div class="block">Class that allows to retrieve some information about the chosen table</div> <div class="block">Class that allows to retrieve some information about the chosen table</div>
</li> </li>
</ul> </ul>
@ -185,6 +190,13 @@ extends org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorit
</tr> </tr>
</table> </table>
<ul class="blockList"> <ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalInfraAlgorithm">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalInfraAlgorithm</h3>
<code>sendNotification</code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm"> <li class="blockList"><a name="methods_inherited_from_class_org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm">
<!-- --> <!-- -->
</a> </a>
@ -396,6 +408,6 @@ extends org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorit
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:33 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ListDBInfo (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>ListDBInfo (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="ListDBInfo (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="ListDBInfo (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -91,12 +91,17 @@
<li>org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm</li> <li>org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm</li>
<li> <li>
<ul class="inheritance"> <ul class="inheritance">
<li>org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalInfraAlgorithm</li>
<li>
<ul class="inheritance">
<li>org.gcube.dataaccess.algorithms.drmalgorithms.ListDBInfo</li> <li>org.gcube.dataaccess.algorithms.drmalgorithms.ListDBInfo</li>
</ul> </ul>
</li> </li>
</ul> </ul>
</li> </li>
</ul> </ul>
</li>
</ul>
<div class="description"> <div class="description">
<ul class="blockList"> <ul class="blockList">
<li class="blockList"> <li class="blockList">
@ -107,7 +112,7 @@
<hr> <hr>
<br> <br>
<pre>public class <span class="strong">ListDBInfo</span> <pre>public class <span class="strong">ListDBInfo</span>
extends org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm</pre> extends org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalInfraAlgorithm</pre>
<div class="block">Class that allows to retrieve information about the chosen resource</div> <div class="block">Class that allows to retrieve information about the chosen resource</div>
</li> </li>
</ul> </ul>
@ -185,6 +190,13 @@ extends org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorit
</tr> </tr>
</table> </table>
<ul class="blockList"> <ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalInfraAlgorithm">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalInfraAlgorithm</h3>
<code>sendNotification</code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm"> <li class="blockList"><a name="methods_inherited_from_class_org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm">
<!-- --> <!-- -->
</a> </a>
@ -394,6 +406,6 @@ extends org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorit
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:33 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ListNames (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>ListNames (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="ListNames (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="ListNames (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -91,12 +91,17 @@
<li>org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm</li> <li>org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm</li>
<li> <li>
<ul class="inheritance"> <ul class="inheritance">
<li>org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalInfraAlgorithm</li>
<li>
<ul class="inheritance">
<li>org.gcube.dataaccess.algorithms.drmalgorithms.ListNames</li> <li>org.gcube.dataaccess.algorithms.drmalgorithms.ListNames</li>
</ul> </ul>
</li> </li>
</ul> </ul>
</li> </li>
</ul> </ul>
</li>
</ul>
<div class="description"> <div class="description">
<ul class="blockList"> <ul class="blockList">
<li class="blockList"> <li class="blockList">
@ -107,7 +112,7 @@
<hr> <hr>
<br> <br>
<pre>public class <span class="strong">ListNames</span> <pre>public class <span class="strong">ListNames</span>
extends org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm</pre> extends org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalInfraAlgorithm</pre>
<div class="block">Class that allows to retrieve a list of database resources</div> <div class="block">Class that allows to retrieve a list of database resources</div>
</li> </li>
</ul> </ul>
@ -185,6 +190,13 @@ extends org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorit
</tr> </tr>
</table> </table>
<ul class="blockList"> <ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalInfraAlgorithm">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalInfraAlgorithm</h3>
<code>sendNotification</code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm"> <li class="blockList"><a name="methods_inherited_from_class_org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm">
<!-- --> <!-- -->
</a> </a>
@ -386,6 +398,6 @@ extends org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorit
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:33 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ListSchemas (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>ListSchemas (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="ListSchemas (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="ListSchemas (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -91,12 +91,17 @@
<li>org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm</li> <li>org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm</li>
<li> <li>
<ul class="inheritance"> <ul class="inheritance">
<li>org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalInfraAlgorithm</li>
<li>
<ul class="inheritance">
<li>org.gcube.dataaccess.algorithms.drmalgorithms.ListSchemas</li> <li>org.gcube.dataaccess.algorithms.drmalgorithms.ListSchemas</li>
</ul> </ul>
</li> </li>
</ul> </ul>
</li> </li>
</ul> </ul>
</li>
</ul>
<div class="description"> <div class="description">
<ul class="blockList"> <ul class="blockList">
<li class="blockList"> <li class="blockList">
@ -107,7 +112,7 @@
<hr> <hr>
<br> <br>
<pre>public class <span class="strong">ListSchemas</span> <pre>public class <span class="strong">ListSchemas</span>
extends org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm</pre> extends org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalInfraAlgorithm</pre>
<div class="block">class that allows to retrieve schema's names of a chosen database. In this <div class="block">class that allows to retrieve schema's names of a chosen database. In this
case the database's type is "postgresql"</div> case the database's type is "postgresql"</div>
</li> </li>
@ -186,6 +191,13 @@ extends org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorit
</tr> </tr>
</table> </table>
<ul class="blockList"> <ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalInfraAlgorithm">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalInfraAlgorithm</h3>
<code>sendNotification</code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm"> <li class="blockList"><a name="methods_inherited_from_class_org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm">
<!-- --> <!-- -->
</a> </a>
@ -397,6 +409,6 @@ extends org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorit
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:33 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ListTables (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>ListTables (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="ListTables (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="ListTables (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -91,12 +91,17 @@
<li>org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm</li> <li>org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm</li>
<li> <li>
<ul class="inheritance"> <ul class="inheritance">
<li>org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalInfraAlgorithm</li>
<li>
<ul class="inheritance">
<li>org.gcube.dataaccess.algorithms.drmalgorithms.ListTables</li> <li>org.gcube.dataaccess.algorithms.drmalgorithms.ListTables</li>
</ul> </ul>
</li> </li>
</ul> </ul>
</li> </li>
</ul> </ul>
</li>
</ul>
<div class="description"> <div class="description">
<ul class="blockList"> <ul class="blockList">
<li class="blockList"> <li class="blockList">
@ -107,7 +112,7 @@
<hr> <hr>
<br> <br>
<pre>public class <span class="strong">ListTables</span> <pre>public class <span class="strong">ListTables</span>
extends org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm</pre> extends org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalInfraAlgorithm</pre>
<div class="block">Class that allows to retrieve the tables's names of a chosen database</div> <div class="block">Class that allows to retrieve the tables's names of a chosen database</div>
</li> </li>
</ul> </ul>
@ -185,6 +190,13 @@ extends org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorit
</tr> </tr>
</table> </table>
<ul class="blockList"> <ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalInfraAlgorithm">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalInfraAlgorithm</h3>
<code>sendNotification</code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm"> <li class="blockList"><a name="methods_inherited_from_class_org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm">
<!-- --> <!-- -->
</a> </a>
@ -396,6 +408,6 @@ extends org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorit
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>RandomSampleOnTable (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>RandomSampleOnTable (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="RandomSampleOnTable (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="RandomSampleOnTable (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -91,12 +91,17 @@
<li>org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm</li> <li>org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm</li>
<li> <li>
<ul class="inheritance"> <ul class="inheritance">
<li>org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalInfraAlgorithm</li>
<li>
<ul class="inheritance">
<li>org.gcube.dataaccess.algorithms.drmalgorithms.RandomSampleOnTable</li> <li>org.gcube.dataaccess.algorithms.drmalgorithms.RandomSampleOnTable</li>
</ul> </ul>
</li> </li>
</ul> </ul>
</li> </li>
</ul> </ul>
</li>
</ul>
<div class="description"> <div class="description">
<ul class="blockList"> <ul class="blockList">
<li class="blockList"> <li class="blockList">
@ -107,7 +112,7 @@
<hr> <hr>
<br> <br>
<pre>public class <span class="strong">RandomSampleOnTable</span> <pre>public class <span class="strong">RandomSampleOnTable</span>
extends org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm</pre> extends org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalInfraAlgorithm</pre>
<div class="block">Class that allows to perform a random sample operation on a table of a chosen <div class="block">Class that allows to perform a random sample operation on a table of a chosen
database. It retrieves 100 rows of a table randomly.</div> database. It retrieves 100 rows of a table randomly.</div>
</li> </li>
@ -186,6 +191,13 @@ extends org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorit
</tr> </tr>
</table> </table>
<ul class="blockList"> <ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalInfraAlgorithm">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalInfraAlgorithm</h3>
<code>sendNotification</code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm"> <li class="blockList"><a name="methods_inherited_from_class_org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm">
<!-- --> <!-- -->
</a> </a>
@ -387,6 +399,6 @@ extends org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorit
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>SampleOnTable (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>SampleOnTable (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="SampleOnTable (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="SampleOnTable (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -91,12 +91,17 @@
<li>org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm</li> <li>org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm</li>
<li> <li>
<ul class="inheritance"> <ul class="inheritance">
<li>org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalInfraAlgorithm</li>
<li>
<ul class="inheritance">
<li>org.gcube.dataaccess.algorithms.drmalgorithms.SampleOnTable</li> <li>org.gcube.dataaccess.algorithms.drmalgorithms.SampleOnTable</li>
</ul> </ul>
</li> </li>
</ul> </ul>
</li> </li>
</ul> </ul>
</li>
</ul>
<div class="description"> <div class="description">
<ul class="blockList"> <ul class="blockList">
<li class="blockList"> <li class="blockList">
@ -107,7 +112,7 @@
<hr> <hr>
<br> <br>
<pre>public class <span class="strong">SampleOnTable</span> <pre>public class <span class="strong">SampleOnTable</span>
extends org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm</pre> extends org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalInfraAlgorithm</pre>
<div class="block">Class that allows to perform a sample operation on a table of a chosen <div class="block">Class that allows to perform a sample operation on a table of a chosen
database. It retrieves the first 100 rows of a table.</div> database. It retrieves the first 100 rows of a table.</div>
</li> </li>
@ -186,6 +191,13 @@ extends org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorit
</tr> </tr>
</table> </table>
<ul class="blockList"> <ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalInfraAlgorithm">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalInfraAlgorithm</h3>
<code>sendNotification</code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm"> <li class="blockList"><a name="methods_inherited_from_class_org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm">
<!-- --> <!-- -->
</a> </a>
@ -387,6 +399,6 @@ extends org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorit
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>SmartCorrectionEnum (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>SmartCorrectionEnum (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="SmartCorrectionEnum (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="SmartCorrectionEnum (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -328,6 +328,6 @@ not permitted.)</div>
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>SmartSampleOnTable (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>SmartSampleOnTable (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="SmartSampleOnTable (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="SmartSampleOnTable (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -91,12 +91,17 @@
<li>org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm</li> <li>org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm</li>
<li> <li>
<ul class="inheritance"> <ul class="inheritance">
<li>org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalInfraAlgorithm</li>
<li>
<ul class="inheritance">
<li>org.gcube.dataaccess.algorithms.drmalgorithms.SmartSampleOnTable</li> <li>org.gcube.dataaccess.algorithms.drmalgorithms.SmartSampleOnTable</li>
</ul> </ul>
</li> </li>
</ul> </ul>
</li> </li>
</ul> </ul>
</li>
</ul>
<div class="description"> <div class="description">
<ul class="blockList"> <ul class="blockList">
<li class="blockList"> <li class="blockList">
@ -107,7 +112,7 @@
<hr> <hr>
<br> <br>
<pre>public class <span class="strong">SmartSampleOnTable</span> <pre>public class <span class="strong">SmartSampleOnTable</span>
extends org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm</pre> extends org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalInfraAlgorithm</pre>
<div class="block">Class that allows to perform a smart sample operation on a table of a chosen <div class="block">Class that allows to perform a smart sample operation on a table of a chosen
database. It retrieves 100 rows of a table randomly that have the maximum database. It retrieves 100 rows of a table randomly that have the maximum
number of columns not null.</div> number of columns not null.</div>
@ -187,6 +192,13 @@ extends org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorit
</tr> </tr>
</table> </table>
<ul class="blockList"> <ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalInfraAlgorithm">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalInfraAlgorithm</h3>
<code>sendNotification</code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm"> <li class="blockList"><a name="methods_inherited_from_class_org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm">
<!-- --> <!-- -->
</a> </a>
@ -388,6 +400,6 @@ extends org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorit
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>SubmitQuery (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>SubmitQuery (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="SubmitQuery (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="SubmitQuery (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -91,12 +91,17 @@
<li>org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm</li> <li>org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm</li>
<li> <li>
<ul class="inheritance"> <ul class="inheritance">
<li>org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalInfraAlgorithm</li>
<li>
<ul class="inheritance">
<li>org.gcube.dataaccess.algorithms.drmalgorithms.SubmitQuery</li> <li>org.gcube.dataaccess.algorithms.drmalgorithms.SubmitQuery</li>
</ul> </ul>
</li> </li>
</ul> </ul>
</li> </li>
</ul> </ul>
</li>
</ul>
<div class="description"> <div class="description">
<ul class="blockList"> <ul class="blockList">
<li class="blockList"> <li class="blockList">
@ -107,7 +112,7 @@
<hr> <hr>
<br> <br>
<pre>public class <span class="strong">SubmitQuery</span> <pre>public class <span class="strong">SubmitQuery</span>
extends org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm</pre> extends org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalInfraAlgorithm</pre>
<div class="block">Class that allows to submit a query. It retrieves results in a file and in a <div class="block">Class that allows to submit a query. It retrieves results in a file and in a
map.</div> map.</div>
</li> </li>
@ -190,6 +195,13 @@ extends org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorit
</tr> </tr>
</table> </table>
<ul class="blockList"> <ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalInfraAlgorithm">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalInfraAlgorithm</h3>
<code>sendNotification</code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm"> <li class="blockList"><a name="methods_inherited_from_class_org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm">
<!-- --> <!-- -->
</a> </a>
@ -416,6 +428,6 @@ extends org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorit
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>SubmitQueryEnum (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>SubmitQueryEnum (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="SubmitQueryEnum (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="SubmitQueryEnum (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -316,6 +316,6 @@ not permitted.)</div>
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:35 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.GetTableDetails (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.GetTableDetails (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.GetTableDetails (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.GetTableDetails (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -112,6 +112,6 @@
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.ListDBInfo (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.ListDBInfo (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.ListDBInfo (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.ListDBInfo (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -112,6 +112,6 @@
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.ListNames (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.ListNames (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.ListNames (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.ListNames (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -112,6 +112,6 @@
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.ListSchemas (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.ListSchemas (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.ListSchemas (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.ListSchemas (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -112,6 +112,6 @@
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.ListTables (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.ListTables (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.ListTables (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.ListTables (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -112,6 +112,6 @@
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:35 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.RandomSampleOnTable (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.RandomSampleOnTable (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.RandomSampleOnTable (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.RandomSampleOnTable (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -112,6 +112,6 @@
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:35 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.SampleOnTable (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.SampleOnTable (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.SampleOnTable (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.SampleOnTable (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -112,6 +112,6 @@
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.SmartCorrectionEnum (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.SmartCorrectionEnum (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.SmartCorrectionEnum (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.SmartCorrectionEnum (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -161,6 +161,6 @@ the order they are declared.</div>
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:35 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.SmartSampleOnTable (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.SmartSampleOnTable (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.SmartSampleOnTable (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.SmartSampleOnTable (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -112,6 +112,6 @@
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:35 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.SubmitQuery (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.SubmitQuery (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.SubmitQuery (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.SubmitQuery (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -112,6 +112,6 @@
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.SubmitQueryEnum (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.SubmitQueryEnum (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.SubmitQueryEnum (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.SubmitQueryEnum (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -161,6 +161,6 @@ the order they are declared.</div>
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,10 +2,10 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>org.gcube.dataaccess.algorithms.drmalgorithms (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>org.gcube.dataaccess.algorithms.drmalgorithms (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>org.gcube.dataaccess.algorithms.drmalgorithms (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>org.gcube.dataaccess.algorithms.drmalgorithms (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="org.gcube.dataaccess.algorithms.drmalgorithms (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="org.gcube.dataaccess.algorithms.drmalgorithms (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -202,6 +202,6 @@
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>org.gcube.dataaccess.algorithms.drmalgorithms Class Hierarchy (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>org.gcube.dataaccess.algorithms.drmalgorithms Class Hierarchy (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="org.gcube.dataaccess.algorithms.drmalgorithms Class Hierarchy (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="org.gcube.dataaccess.algorithms.drmalgorithms Class Hierarchy (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -77,6 +77,8 @@
<ul> <ul>
<li type="circle">org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm (implements org.gcube.dataanalysis.ecoengine.interfaces.Transducerer) <li type="circle">org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm (implements org.gcube.dataanalysis.ecoengine.interfaces.Transducerer)
<ul> <ul>
<li type="circle">org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalInfraAlgorithm
<ul>
<li type="circle">org.gcube.dataaccess.algorithms.drmalgorithms.<a href="../../../../../org/gcube/dataaccess/algorithms/drmalgorithms/GetTableDetails.html" title="class in org.gcube.dataaccess.algorithms.drmalgorithms"><span class="strong">GetTableDetails</span></a></li> <li type="circle">org.gcube.dataaccess.algorithms.drmalgorithms.<a href="../../../../../org/gcube/dataaccess/algorithms/drmalgorithms/GetTableDetails.html" title="class in org.gcube.dataaccess.algorithms.drmalgorithms"><span class="strong">GetTableDetails</span></a></li>
<li type="circle">org.gcube.dataaccess.algorithms.drmalgorithms.<a href="../../../../../org/gcube/dataaccess/algorithms/drmalgorithms/ListDBInfo.html" title="class in org.gcube.dataaccess.algorithms.drmalgorithms"><span class="strong">ListDBInfo</span></a></li> <li type="circle">org.gcube.dataaccess.algorithms.drmalgorithms.<a href="../../../../../org/gcube/dataaccess/algorithms/drmalgorithms/ListDBInfo.html" title="class in org.gcube.dataaccess.algorithms.drmalgorithms"><span class="strong">ListDBInfo</span></a></li>
<li type="circle">org.gcube.dataaccess.algorithms.drmalgorithms.<a href="../../../../../org/gcube/dataaccess/algorithms/drmalgorithms/ListNames.html" title="class in org.gcube.dataaccess.algorithms.drmalgorithms"><span class="strong">ListNames</span></a></li> <li type="circle">org.gcube.dataaccess.algorithms.drmalgorithms.<a href="../../../../../org/gcube/dataaccess/algorithms/drmalgorithms/ListNames.html" title="class in org.gcube.dataaccess.algorithms.drmalgorithms"><span class="strong">ListNames</span></a></li>
@ -91,6 +93,8 @@
</ul> </ul>
</li> </li>
</ul> </ul>
</li>
</ul>
<h2 title="Enum Hierarchy">Enum Hierarchy</h2> <h2 title="Enum Hierarchy">Enum Hierarchy</h2>
<ul> <ul>
<li type="circle">java.lang.<a href="http://download.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang"><span class="strong">Object</span></a> <li type="circle">java.lang.<a href="http://download.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang"><span class="strong">Object</span></a>
@ -150,6 +154,6 @@
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:35 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Package org.gcube.dataaccess.algorithms.drmalgorithms (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>Uses of Package org.gcube.dataaccess.algorithms.drmalgorithms (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Package org.gcube.dataaccess.algorithms.drmalgorithms (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="Uses of Package org.gcube.dataaccess.algorithms.drmalgorithms (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -148,6 +148,6 @@
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:33 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>AbsoluteSpeciesBarChartsAlgorithm (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>AbsoluteSpeciesBarChartsAlgorithm (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="AbsoluteSpeciesBarChartsAlgorithm (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="AbsoluteSpeciesBarChartsAlgorithm (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -439,6 +439,6 @@ extends org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorit
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:33 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>SimpleAlg (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>SimpleAlg (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="SimpleAlg (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="SimpleAlg (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -385,6 +385,6 @@ extends org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorit
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:33 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>TestSimpleAlg (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>TestSimpleAlg (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="TestSimpleAlg (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="TestSimpleAlg (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -256,6 +256,6 @@ extends <a href="http://download.oracle.com/javase/6/docs/api/java/lang/Object.h
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:33 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>TestTransducers (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>TestTransducers (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="TestTransducers (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="TestTransducers (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -256,6 +256,6 @@ extends <a href="http://download.oracle.com/javase/6/docs/api/java/lang/Object.h
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.gcube.dataaccess.algorithms.examples.AbsoluteSpeciesBarChartsAlgorithm (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>Uses of Class org.gcube.dataaccess.algorithms.examples.AbsoluteSpeciesBarChartsAlgorithm (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.examples.AbsoluteSpeciesBarChartsAlgorithm (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.examples.AbsoluteSpeciesBarChartsAlgorithm (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -112,6 +112,6 @@
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.gcube.dataaccess.algorithms.examples.SimpleAlg (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>Uses of Class org.gcube.dataaccess.algorithms.examples.SimpleAlg (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.examples.SimpleAlg (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.examples.SimpleAlg (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -112,6 +112,6 @@
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.gcube.dataaccess.algorithms.examples.TestSimpleAlg (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>Uses of Class org.gcube.dataaccess.algorithms.examples.TestSimpleAlg (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.examples.TestSimpleAlg (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.examples.TestSimpleAlg (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -112,6 +112,6 @@
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.gcube.dataaccess.algorithms.examples.TestTransducers (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>Uses of Class org.gcube.dataaccess.algorithms.examples.TestTransducers (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.examples.TestTransducers (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.examples.TestTransducers (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -112,6 +112,6 @@
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,10 +2,10 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>org.gcube.dataaccess.algorithms.examples (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>org.gcube.dataaccess.algorithms.examples (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>org.gcube.dataaccess.algorithms.examples (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>org.gcube.dataaccess.algorithms.examples (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="org.gcube.dataaccess.algorithms.examples (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="org.gcube.dataaccess.algorithms.examples (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -142,6 +142,6 @@
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>org.gcube.dataaccess.algorithms.examples Class Hierarchy (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>org.gcube.dataaccess.algorithms.examples Class Hierarchy (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="org.gcube.dataaccess.algorithms.examples Class Hierarchy (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="org.gcube.dataaccess.algorithms.examples Class Hierarchy (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -132,6 +132,6 @@
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:35 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Package org.gcube.dataaccess.algorithms.examples (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>Uses of Package org.gcube.dataaccess.algorithms.examples (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Package org.gcube.dataaccess.algorithms.examples (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="Uses of Package org.gcube.dataaccess.algorithms.examples (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -112,6 +112,6 @@
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:33 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>TestListDBInfo (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>TestListDBInfo (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="TestListDBInfo (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="TestListDBInfo (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -256,6 +256,6 @@ extends <a href="http://download.oracle.com/javase/6/docs/api/java/lang/Object.h
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:33 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>TestListNames (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>TestListNames (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="TestListNames (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="TestListNames (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -256,6 +256,6 @@ extends <a href="http://download.oracle.com/javase/6/docs/api/java/lang/Object.h
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:33 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>TestListSchemas (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>TestListSchemas (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="TestListSchemas (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="TestListSchemas (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -256,6 +256,6 @@ extends <a href="http://download.oracle.com/javase/6/docs/api/java/lang/Object.h
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:33 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>TestListTables (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>TestListTables (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="TestListTables (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="TestListTables (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -256,6 +256,6 @@ extends <a href="http://download.oracle.com/javase/6/docs/api/java/lang/Object.h
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:33 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>TestSubmitQuery (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>TestSubmitQuery (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="TestSubmitQuery (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="TestSubmitQuery (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -256,6 +256,6 @@ extends <a href="http://download.oracle.com/javase/6/docs/api/java/lang/Object.h
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:33 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>TestTableDetails (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>TestTableDetails (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="TestTableDetails (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="TestTableDetails (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -256,6 +256,6 @@ extends <a href="http://download.oracle.com/javase/6/docs/api/java/lang/Object.h
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.gcube.dataaccess.algorithms.test.TestListDBInfo (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>Uses of Class org.gcube.dataaccess.algorithms.test.TestListDBInfo (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.test.TestListDBInfo (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.test.TestListDBInfo (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -112,6 +112,6 @@
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.gcube.dataaccess.algorithms.test.TestListNames (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>Uses of Class org.gcube.dataaccess.algorithms.test.TestListNames (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.test.TestListNames (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.test.TestListNames (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -112,6 +112,6 @@
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.gcube.dataaccess.algorithms.test.TestListSchemas (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>Uses of Class org.gcube.dataaccess.algorithms.test.TestListSchemas (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.test.TestListSchemas (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.test.TestListSchemas (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -112,6 +112,6 @@
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.gcube.dataaccess.algorithms.test.TestListTables (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>Uses of Class org.gcube.dataaccess.algorithms.test.TestListTables (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.test.TestListTables (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.test.TestListTables (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -112,6 +112,6 @@
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.gcube.dataaccess.algorithms.test.TestSubmitQuery (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>Uses of Class org.gcube.dataaccess.algorithms.test.TestSubmitQuery (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.test.TestSubmitQuery (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.test.TestSubmitQuery (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -112,6 +112,6 @@
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.gcube.dataaccess.algorithms.test.TestTableDetails (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>Uses of Class org.gcube.dataaccess.algorithms.test.TestTableDetails (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.test.TestTableDetails (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.test.TestTableDetails (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -112,6 +112,6 @@
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,10 +2,10 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>org.gcube.dataaccess.algorithms.test (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>org.gcube.dataaccess.algorithms.test (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>org.gcube.dataaccess.algorithms.test (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>org.gcube.dataaccess.algorithms.test (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="org.gcube.dataaccess.algorithms.test (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="org.gcube.dataaccess.algorithms.test (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -150,6 +150,6 @@
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>org.gcube.dataaccess.algorithms.test Class Hierarchy (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>org.gcube.dataaccess.algorithms.test Class Hierarchy (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="org.gcube.dataaccess.algorithms.test Class Hierarchy (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="org.gcube.dataaccess.algorithms.test Class Hierarchy (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -130,6 +130,6 @@
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:35 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Package org.gcube.dataaccess.algorithms.test (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>Uses of Package org.gcube.dataaccess.algorithms.test (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Package org.gcube.dataaccess.algorithms.test (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="Uses of Package org.gcube.dataaccess.algorithms.test (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -112,6 +112,6 @@
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:33 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>RegressionListDBInfo (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>RegressionListDBInfo (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="RegressionListDBInfo (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="RegressionListDBInfo (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -256,6 +256,6 @@ extends <a href="http://download.oracle.com/javase/6/docs/api/java/lang/Object.h
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:33 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>RegressionListNames (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>RegressionListNames (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="RegressionListNames (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="RegressionListNames (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -256,6 +256,6 @@ extends <a href="http://download.oracle.com/javase/6/docs/api/java/lang/Object.h
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:33 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>RegressionListSchemas (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>RegressionListSchemas (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="RegressionListSchemas (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="RegressionListSchemas (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -256,6 +256,6 @@ extends <a href="http://download.oracle.com/javase/6/docs/api/java/lang/Object.h
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:33 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>RegressionListTables (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>RegressionListTables (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="RegressionListTables (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="RegressionListTables (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -256,6 +256,6 @@ extends <a href="http://download.oracle.com/javase/6/docs/api/java/lang/Object.h
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:33 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>RegressionRandomSampleOnTable (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>RegressionRandomSampleOnTable (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="RegressionRandomSampleOnTable (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="RegressionRandomSampleOnTable (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -256,6 +256,6 @@ extends <a href="http://download.oracle.com/javase/6/docs/api/java/lang/Object.h
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:33 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>RegressionSampleOnTable (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>RegressionSampleOnTable (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="RegressionSampleOnTable (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="RegressionSampleOnTable (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -256,6 +256,6 @@ extends <a href="http://download.oracle.com/javase/6/docs/api/java/lang/Object.h
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:33 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>RegressionSmartSampleOnTable (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>RegressionSmartSampleOnTable (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="RegressionSmartSampleOnTable (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="RegressionSmartSampleOnTable (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -256,6 +256,6 @@ extends <a href="http://download.oracle.com/javase/6/docs/api/java/lang/Object.h
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:33 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>RegressionSubmitQuery (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>RegressionSubmitQuery (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="RegressionSubmitQuery (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="RegressionSubmitQuery (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -256,6 +256,6 @@ extends <a href="http://download.oracle.com/javase/6/docs/api/java/lang/Object.h
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:33 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>RegressionTableDetails (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>RegressionTableDetails (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="RegressionTableDetails (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="RegressionTableDetails (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -256,6 +256,6 @@ extends <a href="http://download.oracle.com/javase/6/docs/api/java/lang/Object.h
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.gcube.dataaccess.algorithms.test.regressiontest.RegressionListDBInfo (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>Uses of Class org.gcube.dataaccess.algorithms.test.regressiontest.RegressionListDBInfo (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.test.regressiontest.RegressionListDBInfo (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.test.regressiontest.RegressionListDBInfo (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -112,6 +112,6 @@
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.gcube.dataaccess.algorithms.test.regressiontest.RegressionListNames (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>Uses of Class org.gcube.dataaccess.algorithms.test.regressiontest.RegressionListNames (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.test.regressiontest.RegressionListNames (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.test.regressiontest.RegressionListNames (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -112,6 +112,6 @@
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.gcube.dataaccess.algorithms.test.regressiontest.RegressionListSchemas (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>Uses of Class org.gcube.dataaccess.algorithms.test.regressiontest.RegressionListSchemas (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.test.regressiontest.RegressionListSchemas (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.test.regressiontest.RegressionListSchemas (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -112,6 +112,6 @@
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.gcube.dataaccess.algorithms.test.regressiontest.RegressionListTables (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>Uses of Class org.gcube.dataaccess.algorithms.test.regressiontest.RegressionListTables (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.test.regressiontest.RegressionListTables (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.test.regressiontest.RegressionListTables (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -112,6 +112,6 @@
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.gcube.dataaccess.algorithms.test.regressiontest.RegressionRandomSampleOnTable (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>Uses of Class org.gcube.dataaccess.algorithms.test.regressiontest.RegressionRandomSampleOnTable (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.test.regressiontest.RegressionRandomSampleOnTable (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.test.regressiontest.RegressionRandomSampleOnTable (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -112,6 +112,6 @@
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.gcube.dataaccess.algorithms.test.regressiontest.RegressionSampleOnTable (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>Uses of Class org.gcube.dataaccess.algorithms.test.regressiontest.RegressionSampleOnTable (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.test.regressiontest.RegressionSampleOnTable (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.test.regressiontest.RegressionSampleOnTable (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -112,6 +112,6 @@
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.gcube.dataaccess.algorithms.test.regressiontest.RegressionSmartSampleOnTable (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>Uses of Class org.gcube.dataaccess.algorithms.test.regressiontest.RegressionSmartSampleOnTable (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.test.regressiontest.RegressionSmartSampleOnTable (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.test.regressiontest.RegressionSmartSampleOnTable (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -112,6 +112,6 @@
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.gcube.dataaccess.algorithms.test.regressiontest.RegressionSubmitQuery (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>Uses of Class org.gcube.dataaccess.algorithms.test.regressiontest.RegressionSubmitQuery (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.test.regressiontest.RegressionSubmitQuery (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.test.regressiontest.RegressionSubmitQuery (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -112,6 +112,6 @@
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.gcube.dataaccess.algorithms.test.regressiontest.RegressionTableDetails (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>Uses of Class org.gcube.dataaccess.algorithms.test.regressiontest.RegressionTableDetails (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.test.regressiontest.RegressionTableDetails (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="Uses of Class org.gcube.dataaccess.algorithms.test.regressiontest.RegressionTableDetails (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -112,6 +112,6 @@
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,10 +2,10 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>org.gcube.dataaccess.algorithms.test.regressiontest (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>org.gcube.dataaccess.algorithms.test.regressiontest (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>org.gcube.dataaccess.algorithms.test.regressiontest (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>org.gcube.dataaccess.algorithms.test.regressiontest (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="org.gcube.dataaccess.algorithms.test.regressiontest (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="org.gcube.dataaccess.algorithms.test.regressiontest (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -162,6 +162,6 @@
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>org.gcube.dataaccess.algorithms.test.regressiontest Class Hierarchy (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>org.gcube.dataaccess.algorithms.test.regressiontest Class Hierarchy (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="org.gcube.dataaccess.algorithms.test.regressiontest Class Hierarchy (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="org.gcube.dataaccess.algorithms.test.regressiontest Class Hierarchy (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -133,6 +133,6 @@
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:35 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Package org.gcube.dataaccess.algorithms.test.regressiontest (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>Uses of Package org.gcube.dataaccess.algorithms.test.regressiontest (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Package org.gcube.dataaccess.algorithms.test.regressiontest (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="Uses of Package org.gcube.dataaccess.algorithms.test.regressiontest (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -112,6 +112,6 @@
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,10 +2,10 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:34 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Overview List (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>Overview List (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
</head> </head>
<body> <body>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:35 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Overview (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>Overview (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Overview (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="Overview (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -64,7 +64,7 @@
</a></div> </a></div>
<!-- ========= END OF TOP NAVBAR ========= --> <!-- ========= END OF TOP NAVBAR ========= -->
<div class="header"> <div class="header">
<h1 class="title">DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API</h1> <h1 class="title">DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API</h1>
</div> </div>
<div class="contentContainer"> <div class="contentContainer">
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Packages table, listing packages, and an explanation"> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Packages table, listing packages, and an explanation">
@ -138,6 +138,6 @@
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

View File

@ -2,16 +2,16 @@
<!-- NewPage --> <!-- NewPage -->
<html lang="en"> <html lang="en">
<head> <head>
<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 22 14:08:34 CET 2016 --> <!-- Generated by javadoc (version 1.7.0_80) on Tue Feb 28 17:15:35 CET 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Class Hierarchy (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title> <title>Class Hierarchy (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22"> <meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
</head> </head>
<body> <body>
<script type="text/javascript"><!-- <script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) { if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Class Hierarchy (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)"; parent.document.title="Class Hierarchy (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)";
} }
//--> //-->
</script> </script>
@ -90,6 +90,9 @@
<li type="circle">org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm (implements org.gcube.dataanalysis.ecoengine.interfaces.Transducerer) <li type="circle">org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm (implements org.gcube.dataanalysis.ecoengine.interfaces.Transducerer)
<ul> <ul>
<li type="circle">org.gcube.dataaccess.algorithms.examples.<a href="org/gcube/dataaccess/algorithms/examples/AbsoluteSpeciesBarChartsAlgorithm.html" title="class in org.gcube.dataaccess.algorithms.examples"><span class="strong">AbsoluteSpeciesBarChartsAlgorithm</span></a></li> <li type="circle">org.gcube.dataaccess.algorithms.examples.<a href="org/gcube/dataaccess/algorithms/examples/AbsoluteSpeciesBarChartsAlgorithm.html" title="class in org.gcube.dataaccess.algorithms.examples"><span class="strong">AbsoluteSpeciesBarChartsAlgorithm</span></a></li>
<li type="circle">org.gcube.dataaccess.algorithms.examples.<a href="org/gcube/dataaccess/algorithms/examples/SimpleAlg.html" title="class in org.gcube.dataaccess.algorithms.examples"><span class="strong">SimpleAlg</span></a></li>
<li type="circle">org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalInfraAlgorithm
<ul>
<li type="circle">org.gcube.dataaccess.algorithms.drmalgorithms.<a href="org/gcube/dataaccess/algorithms/drmalgorithms/GetTableDetails.html" title="class in org.gcube.dataaccess.algorithms.drmalgorithms"><span class="strong">GetTableDetails</span></a></li> <li type="circle">org.gcube.dataaccess.algorithms.drmalgorithms.<a href="org/gcube/dataaccess/algorithms/drmalgorithms/GetTableDetails.html" title="class in org.gcube.dataaccess.algorithms.drmalgorithms"><span class="strong">GetTableDetails</span></a></li>
<li type="circle">org.gcube.dataaccess.algorithms.drmalgorithms.<a href="org/gcube/dataaccess/algorithms/drmalgorithms/ListDBInfo.html" title="class in org.gcube.dataaccess.algorithms.drmalgorithms"><span class="strong">ListDBInfo</span></a></li> <li type="circle">org.gcube.dataaccess.algorithms.drmalgorithms.<a href="org/gcube/dataaccess/algorithms/drmalgorithms/ListDBInfo.html" title="class in org.gcube.dataaccess.algorithms.drmalgorithms"><span class="strong">ListDBInfo</span></a></li>
<li type="circle">org.gcube.dataaccess.algorithms.drmalgorithms.<a href="org/gcube/dataaccess/algorithms/drmalgorithms/ListNames.html" title="class in org.gcube.dataaccess.algorithms.drmalgorithms"><span class="strong">ListNames</span></a></li> <li type="circle">org.gcube.dataaccess.algorithms.drmalgorithms.<a href="org/gcube/dataaccess/algorithms/drmalgorithms/ListNames.html" title="class in org.gcube.dataaccess.algorithms.drmalgorithms"><span class="strong">ListNames</span></a></li>
@ -97,11 +100,12 @@
<li type="circle">org.gcube.dataaccess.algorithms.drmalgorithms.<a href="org/gcube/dataaccess/algorithms/drmalgorithms/ListTables.html" title="class in org.gcube.dataaccess.algorithms.drmalgorithms"><span class="strong">ListTables</span></a></li> <li type="circle">org.gcube.dataaccess.algorithms.drmalgorithms.<a href="org/gcube/dataaccess/algorithms/drmalgorithms/ListTables.html" title="class in org.gcube.dataaccess.algorithms.drmalgorithms"><span class="strong">ListTables</span></a></li>
<li type="circle">org.gcube.dataaccess.algorithms.drmalgorithms.<a href="org/gcube/dataaccess/algorithms/drmalgorithms/RandomSampleOnTable.html" title="class in org.gcube.dataaccess.algorithms.drmalgorithms"><span class="strong">RandomSampleOnTable</span></a></li> <li type="circle">org.gcube.dataaccess.algorithms.drmalgorithms.<a href="org/gcube/dataaccess/algorithms/drmalgorithms/RandomSampleOnTable.html" title="class in org.gcube.dataaccess.algorithms.drmalgorithms"><span class="strong">RandomSampleOnTable</span></a></li>
<li type="circle">org.gcube.dataaccess.algorithms.drmalgorithms.<a href="org/gcube/dataaccess/algorithms/drmalgorithms/SampleOnTable.html" title="class in org.gcube.dataaccess.algorithms.drmalgorithms"><span class="strong">SampleOnTable</span></a></li> <li type="circle">org.gcube.dataaccess.algorithms.drmalgorithms.<a href="org/gcube/dataaccess/algorithms/drmalgorithms/SampleOnTable.html" title="class in org.gcube.dataaccess.algorithms.drmalgorithms"><span class="strong">SampleOnTable</span></a></li>
<li type="circle">org.gcube.dataaccess.algorithms.examples.<a href="org/gcube/dataaccess/algorithms/examples/SimpleAlg.html" title="class in org.gcube.dataaccess.algorithms.examples"><span class="strong">SimpleAlg</span></a></li>
<li type="circle">org.gcube.dataaccess.algorithms.drmalgorithms.<a href="org/gcube/dataaccess/algorithms/drmalgorithms/SmartSampleOnTable.html" title="class in org.gcube.dataaccess.algorithms.drmalgorithms"><span class="strong">SmartSampleOnTable</span></a></li> <li type="circle">org.gcube.dataaccess.algorithms.drmalgorithms.<a href="org/gcube/dataaccess/algorithms/drmalgorithms/SmartSampleOnTable.html" title="class in org.gcube.dataaccess.algorithms.drmalgorithms"><span class="strong">SmartSampleOnTable</span></a></li>
<li type="circle">org.gcube.dataaccess.algorithms.drmalgorithms.<a href="org/gcube/dataaccess/algorithms/drmalgorithms/SubmitQuery.html" title="class in org.gcube.dataaccess.algorithms.drmalgorithms"><span class="strong">SubmitQuery</span></a></li> <li type="circle">org.gcube.dataaccess.algorithms.drmalgorithms.<a href="org/gcube/dataaccess/algorithms/drmalgorithms/SubmitQuery.html" title="class in org.gcube.dataaccess.algorithms.drmalgorithms"><span class="strong">SubmitQuery</span></a></li>
</ul> </ul>
</li> </li>
</ul>
</li>
<li type="circle">org.gcube.dataaccess.algorithms.test.<a href="org/gcube/dataaccess/algorithms/test/TestListDBInfo.html" title="class in org.gcube.dataaccess.algorithms.test"><span class="strong">TestListDBInfo</span></a></li> <li type="circle">org.gcube.dataaccess.algorithms.test.<a href="org/gcube/dataaccess/algorithms/test/TestListDBInfo.html" title="class in org.gcube.dataaccess.algorithms.test"><span class="strong">TestListDBInfo</span></a></li>
<li type="circle">org.gcube.dataaccess.algorithms.test.<a href="org/gcube/dataaccess/algorithms/test/TestListNames.html" title="class in org.gcube.dataaccess.algorithms.test"><span class="strong">TestListNames</span></a></li> <li type="circle">org.gcube.dataaccess.algorithms.test.<a href="org/gcube/dataaccess/algorithms/test/TestListNames.html" title="class in org.gcube.dataaccess.algorithms.test"><span class="strong">TestListNames</span></a></li>
<li type="circle">org.gcube.dataaccess.algorithms.test.<a href="org/gcube/dataaccess/algorithms/test/TestListSchemas.html" title="class in org.gcube.dataaccess.algorithms.test"><span class="strong">TestListSchemas</span></a></li> <li type="circle">org.gcube.dataaccess.algorithms.test.<a href="org/gcube/dataaccess/algorithms/test/TestListSchemas.html" title="class in org.gcube.dataaccess.algorithms.test"><span class="strong">TestListSchemas</span></a></li>
@ -172,6 +176,6 @@
<!-- --> <!-- -->
</a></div> </a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= --> <!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> <p class="legalCopy"><small>Copyright &#169; 2017. All Rights Reserved.</small></p>
</body> </body>
</html> </html>

Some files were not shown because too many files have changed in this diff Show More