Giancarlo Panichi 7 years ago
parent 492885ac10
commit af053db669

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

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

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

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

@ -5,23 +5,22 @@ import java.util.LinkedHashMap;
import java.util.List;
import java.util.UUID;
import org.gcube.common.scope.api.ScopeProvider;
import org.gcube.contentmanagement.lexicalmatcher.utils.AnalysisLogger;
import org.gcube.dataaccess.databases.access.DatabasesDiscoverer;
import org.gcube.dataaccess.databases.resources.DBResource;
import org.gcube.dataanalysis.ecoengine.datatypes.PrimitiveType;
import org.gcube.dataanalysis.ecoengine.datatypes.StatisticalType;
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.InvalidResultException;
/** 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 LinkedHashMap<String, StatisticalType> map = new LinkedHashMap<String, StatisticalType>();
@Override
public void init() throws Exception {
@ -32,18 +31,6 @@ public class ListNames extends StandardLocalExternalAlgorithm {
AnalysisLogger.getLogger().debug(
"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
@ -58,16 +45,6 @@ public class ListNames extends StandardLocalExternalAlgorithm {
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 {
// retrieve resources
@ -79,10 +56,10 @@ public class ListNames extends StandardLocalExternalAlgorithm {
ArrayList<String> listnames = new ArrayList<String>();
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(),
null, PrimitiveTypes.STRING, name, name);
AnalysisLogger.getLogger().debug(
"In ListNames->Resource's name: "
+ resources.get(i).getResourceName());
@ -128,7 +105,7 @@ public class ListNames extends StandardLocalExternalAlgorithm {
@Override
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)",
"-1");
@ -147,13 +124,13 @@ public class ListNames extends StandardLocalExternalAlgorithm {
// generate a primitive type for the collection
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;
}
private List<DBResource> retrieveResources() throws IllegalStateException,
DiscoveryException, InvalidResultException {

@ -7,7 +7,6 @@ import java.util.LinkedHashMap;
import java.util.List;
import java.util.UUID;
import org.gcube.common.scope.api.ScopeProvider;
import org.gcube.contentmanagement.lexicalmatcher.utils.AnalysisLogger;
import org.gcube.dataaccess.databases.access.DatabasesDiscoverer;
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.StatisticalType;
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.InvalidResultException;
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
* 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 LinkedHashMap<String, StatisticalType> map = new LinkedHashMap<String, StatisticalType>();
@ -34,7 +33,7 @@ public class ListSchemas extends StandardLocalExternalAlgorithm {
private String resourceName = null;
private String databaseName = null;
//private SessionFactory sf;
// private SessionFactory sf;
@Override
public void init() throws Exception {
@ -46,18 +45,6 @@ public class ListSchemas extends StandardLocalExternalAlgorithm {
AnalysisLogger.getLogger().debug(
"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
@ -97,10 +84,9 @@ public class ListSchemas extends StandardLocalExternalAlgorithm {
}
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(),
null, PrimitiveTypes.STRING, schemaId,
schemaId);
null, PrimitiveTypes.STRING, schemaId, schemaId);
val.setContent(listSchemas.get(i));
@ -217,11 +203,11 @@ public class ListSchemas extends StandardLocalExternalAlgorithm {
}
// finally {
// if (sf.isClosed() == false) {
// mgt.closeConnection();
// }
// }
// finally {
// if (sf.isClosed() == false) {
// mgt.closeConnection();
// }
// }
return listSchemas;
@ -422,9 +408,8 @@ public class ListSchemas extends StandardLocalExternalAlgorithm {
String DatabaseURL = iterator.next();
String DatabaseName = iterator.next();
mgt.createConnection(DatabaseUserName,
DatabasePassword, DatabaseDriver, DatabaseDialect, DatabaseURL,
DatabaseName);
mgt.createConnection(DatabaseUserName, DatabasePassword,
DatabaseDriver, DatabaseDialect, DatabaseURL, DatabaseName);
// if (sf.isClosed()){
@ -434,40 +419,40 @@ public class ListSchemas extends StandardLocalExternalAlgorithm {
}
private void normalizeDBInfo(DBResource resource) throws Exception {
try{
try {
int ap = resource.getAccessPoints().size();
for (int i = 0; i < ap; i++) {
resource.normalize(i);
}
}catch (Exception e) {
} catch (Exception e) {
AnalysisLogger.getLogger().debug(
"In ListSchemas->: Error in normalization process"
+ e.getMessage());
throw e;
}
// int ap = resource.getAccessPoints().size();
//
// for (int i = 0; i < ap; i++) {
//
//// try {
// resource.normalize(i);
//// } catch (IOException e) {
//
// // e.printStackTrace();
//// AnalysisLogger.getLogger().debug(
//// "In ListTables->: Error in normalization process"
//// + e.getMessage());
//
//// throw e;
//
//// }
//
// }
// int ap = resource.getAccessPoints().size();
//
// for (int i = 0; i < ap; i++) {
//
// // try {
// resource.normalize(i);
// // } catch (IOException e) {
//
// // e.printStackTrace();
// // AnalysisLogger.getLogger().debug(
// // "In ListTables->: Error in normalization process"
// // + e.getMessage());
//
// // throw e;
//
// // }
//
// }
}
}

@ -7,7 +7,6 @@ import java.util.LinkedHashMap;
import java.util.List;
import java.util.UUID;
import org.gcube.common.scope.api.ScopeProvider;
import org.gcube.contentmanagement.lexicalmatcher.utils.AnalysisLogger;
import org.gcube.dataaccess.databases.access.DatabasesDiscoverer;
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.StatisticalType;
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.InvalidResultException;
import org.hibernate.HibernateException;
/** 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 LinkedHashMap<String, StatisticalType> map = new LinkedHashMap<String, StatisticalType>();
@ -34,7 +33,7 @@ public class ListTables extends StandardLocalExternalAlgorithm {
private String databaseName = null;
private String schemaName = null;
//private SessionFactory sf;
// private SessionFactory sf;
@Override
public void init() throws Exception {
@ -46,19 +45,6 @@ public class ListTables extends StandardLocalExternalAlgorithm {
AnalysisLogger.getLogger().debug(
"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
@ -92,7 +78,7 @@ public class ListTables extends StandardLocalExternalAlgorithm {
if (driverInfo.toLowerCase().contains("postgres")) {
schemaName = getInputParameter("SchemaName");
if(schemaName != null){
if (schemaName != null) {
schemaName = getInputParameter("SchemaName").trim();
}
if ((schemaName == null) || (schemaName.equals(""))) {
@ -137,12 +123,11 @@ public class ListTables extends StandardLocalExternalAlgorithm {
} else {
for (int i = 0; i < listTables.size(); i++) {
String tableId = TABLE_NAME+(i+1);
String tableId = TABLE_NAME + (i + 1);
PrimitiveType val = new PrimitiveType(
String.class.getName(), null,
PrimitiveTypes.STRING, tableId,
tableId);
PrimitiveTypes.STRING, tableId, tableId);
val.setContent(listTables.get(i));
@ -414,48 +399,47 @@ public class ListTables extends StandardLocalExternalAlgorithm {
String DatabaseURL = iterator.next();
String DatabaseName = iterator.next();
mgt.createConnection(DatabaseUserName,
DatabasePassword, DatabaseDriver, DatabaseDialect, DatabaseURL,
DatabaseName);
mgt.createConnection(DatabaseUserName, DatabasePassword,
DatabaseDriver, DatabaseDialect, DatabaseURL, DatabaseName);
AnalysisLogger.getLogger().debug(
"In ListTables->database " + DatabaseName + ": connected");
}
private void normalizeDBInfo(DBResource resource) throws Exception {
try{
try {
int ap = resource.getAccessPoints().size();
for (int i = 0; i < ap; i++) {
resource.normalize(i);
}
}catch (Exception e) {
} catch (Exception e) {
AnalysisLogger.getLogger().debug(
"In ListTables->: Error in normalization process"
+ e.getMessage());
throw e;
}
// int ap = resource.getAccessPoints().size();
//
// for (int i = 0; i < ap; i++) {
//
// try {
// resource.normalize(i);
// } catch (IOException e) {
// // e.printStackTrace();
//
// AnalysisLogger.getLogger().debug(
// "In ListTables->: Error in normalization process"
// + e.getMessage());
//
// throw e;
// }
//
// }
// int ap = resource.getAccessPoints().size();
//
// for (int i = 0; i < ap; i++) {
//
// try {
// resource.normalize(i);
// } catch (IOException e) {
// // e.printStackTrace();
//
// AnalysisLogger.getLogger().debug(
// "In ListTables->: Error in normalization process"
// + e.getMessage());
//
// throw e;
// }
//
// }
}
}

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

@ -9,7 +9,6 @@ import java.util.LinkedHashMap;
import java.util.List;
import java.util.UUID;
import org.gcube.common.scope.api.ScopeProvider;
import org.gcube.contentmanagement.lexicalmatcher.utils.AnalysisLogger;
import org.gcube.dataaccess.databases.access.DatabasesDiscoverer;
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.StatisticalType;
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.InvalidResultException;
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
* 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>();
@ -38,7 +37,7 @@ public class SampleOnTable extends StandardLocalExternalAlgorithm {
private String schemaName = null;
private String tableName = null;
//private SessionFactory sf;
// private SessionFactory sf;
// variable that keeps track of the driver information
private String driverInfo;
@ -52,13 +51,6 @@ public class SampleOnTable extends StandardLocalExternalAlgorithm {
AnalysisLogger.getLogger().debug(
"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
@ -76,7 +68,7 @@ public class SampleOnTable extends StandardLocalExternalAlgorithm {
// check on table name field
tableName = getInputParameter("TableName");
if(tableName != null){
if (tableName != null) {
tableName = getInputParameter("TableName").trim();
}
if ((tableName == null) || (tableName.equals(""))) {
@ -86,7 +78,7 @@ public class SampleOnTable extends StandardLocalExternalAlgorithm {
// check on schema name field
if (driverInfo.toLowerCase().contains("postgres")) {
schemaName = getInputParameter("SchemaName");
if(schemaName != null){
if (schemaName != null) {
schemaName = getInputParameter("SchemaName").trim();
}
if ((schemaName == null) || (schemaName.equals(""))) {
@ -99,7 +91,7 @@ public class SampleOnTable extends StandardLocalExternalAlgorithm {
// sample operation on table
map = sampleOnTable();
} catch (HibernateException h) {
AnalysisLogger.getLogger().debug(
"In SampleOnTable-> ERROR " + h.getMessage());
@ -159,7 +151,8 @@ public class SampleOnTable extends StandardLocalExternalAlgorithm {
// generate a primitive type for the collection
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;
}
@ -274,34 +267,34 @@ public class SampleOnTable extends StandardLocalExternalAlgorithm {
// to normalize the information related to a database
private void normalizeDBInfo(DBResource resource) throws Exception {
try{
try {
int ap = resource.getAccessPoints().size();
for (int i = 0; i < ap; i++) {
resource.normalize(i);
}
}catch (Exception e) {
} catch (Exception e) {
AnalysisLogger.getLogger().debug(
"In SampleOnTable->: Error in normalization process"
+ e.getMessage());
throw e;
}
// int ap = resource.getAccessPoints().size();
// for (int i = 0; i < ap; i++) {
// try {
// resource.normalize(i);
// } catch (IOException e) {
// // e.printStackTrace();
// AnalysisLogger.getLogger().debug(
// "In SampleOnTable->: Error in normalization process"
// + e.getMessage());
// throw e;
// }
// }
// int ap = resource.getAccessPoints().size();
// for (int i = 0; i < ap; i++) {
// try {
// resource.normalize(i);
// } catch (IOException e) {
// // e.printStackTrace();
// AnalysisLogger.getLogger().debug(
// "In SampleOnTable->: Error in normalization process"
// + e.getMessage());
// throw e;
// }
// }
}
// create the database's connection
@ -317,9 +310,8 @@ public class SampleOnTable extends StandardLocalExternalAlgorithm {
String DatabaseURL = iterator.next();
String DatabaseName = iterator.next();
mgt.createConnection(DatabaseUserName,
DatabasePassword, DatabaseDriver, DatabaseDialect, DatabaseURL,
DatabaseName);
mgt.createConnection(DatabaseUserName, DatabasePassword,
DatabaseDriver, DatabaseDialect, DatabaseURL, DatabaseName);
AnalysisLogger.getLogger().debug(
"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 map
HashMap<String, String> mapResult = new HashMap<String, String>();
mapResult = mgt.getMapSampleTableResult();
@ -379,8 +371,8 @@ public class SampleOnTable extends StandardLocalExternalAlgorithm {
// // check encoded value
// AnalysisLogger.getLogger().debug(
// "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(),
encoded, PrimitiveTypes.STRING, row, row);
mapResults.put(String.valueOf(i), val1);
@ -394,8 +386,7 @@ public class SampleOnTable extends StandardLocalExternalAlgorithm {
// to add the file
PrimitiveType fileResult = new PrimitiveType(File.class.getName(),
mgt.getFile(), PrimitiveTypes.FILE, "File",
"File");
mgt.getFile(), PrimitiveTypes.FILE, "File", "File");
mapResults.put("File", fileResult);
return mapResults;

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

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

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>All Classes (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>All Classes (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
</head>
<body>

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>All Classes (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>All Classes (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
</head>
<body>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>Constant Field Values (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>Constant Field Values (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -112,6 +112,6 @@
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>Deprecated List (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>Deprecated List (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -112,6 +112,6 @@
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>API Help (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>API Help (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -217,6 +217,6 @@
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>Index (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>Index (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="./stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -524,6 +524,6 @@ the order they are declared.</div>
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API</title>
<title>DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API</title>
<script type="text/javascript">
targetPage = "" + window.location.search;
if (targetPage != "" && targetPage != "undefined")

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>GetTableDetails (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>GetTableDetails (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -91,12 +91,17 @@
<li>org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm</li>
<li>
<ul class="inheritance">
<li>org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalInfraAlgorithm</li>
<li>
<ul class="inheritance">
<li>org.gcube.dataaccess.algorithms.drmalgorithms.GetTableDetails</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
@ -107,7 +112,7 @@
<hr>
<br>
<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>
</li>
</ul>
@ -185,6 +190,13 @@ extends org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorit
</tr>
</table>
<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">
<!-- -->
</a>
@ -396,6 +408,6 @@ extends org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorit
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>ListDBInfo (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>ListDBInfo (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -91,12 +91,17 @@
<li>org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm</li>
<li>
<ul class="inheritance">
<li>org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalInfraAlgorithm</li>
<li>
<ul class="inheritance">
<li>org.gcube.dataaccess.algorithms.drmalgorithms.ListDBInfo</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
@ -107,7 +112,7 @@
<hr>
<br>
<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>
</li>
</ul>
@ -185,6 +190,13 @@ extends org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorit
</tr>
</table>
<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">
<!-- -->
</a>
@ -394,6 +406,6 @@ extends org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorit
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>ListNames (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>ListNames (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -91,12 +91,17 @@
<li>org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm</li>
<li>
<ul class="inheritance">
<li>org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalInfraAlgorithm</li>
<li>
<ul class="inheritance">
<li>org.gcube.dataaccess.algorithms.drmalgorithms.ListNames</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
@ -107,7 +112,7 @@
<hr>
<br>
<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>
</li>
</ul>
@ -185,6 +190,13 @@ extends org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorit
</tr>
</table>
<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">
<!-- -->
</a>
@ -386,6 +398,6 @@ extends org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorit
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>ListSchemas (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>ListSchemas (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -91,12 +91,17 @@
<li>org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm</li>
<li>
<ul class="inheritance">
<li>org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalInfraAlgorithm</li>
<li>
<ul class="inheritance">
<li>org.gcube.dataaccess.algorithms.drmalgorithms.ListSchemas</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
@ -107,7 +112,7 @@
<hr>
<br>
<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
case the database's type is "postgresql"</div>
</li>
@ -186,6 +191,13 @@ extends org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorit
</tr>
</table>
<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">
<!-- -->
</a>
@ -397,6 +409,6 @@ extends org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorit
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>ListTables (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>ListTables (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -91,12 +91,17 @@
<li>org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm</li>
<li>
<ul class="inheritance">
<li>org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalInfraAlgorithm</li>
<li>
<ul class="inheritance">
<li>org.gcube.dataaccess.algorithms.drmalgorithms.ListTables</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
@ -107,7 +112,7 @@
<hr>
<br>
<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>
</li>
</ul>
@ -185,6 +190,13 @@ extends org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorit
</tr>
</table>
<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">
<!-- -->
</a>
@ -396,6 +408,6 @@ extends org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorit
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>RandomSampleOnTable (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>RandomSampleOnTable (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -91,12 +91,17 @@
<li>org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm</li>
<li>
<ul class="inheritance">
<li>org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalInfraAlgorithm</li>
<li>
<ul class="inheritance">
<li>org.gcube.dataaccess.algorithms.drmalgorithms.RandomSampleOnTable</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
@ -107,7 +112,7 @@
<hr>
<br>
<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
database. It retrieves 100 rows of a table randomly.</div>
</li>
@ -186,6 +191,13 @@ extends org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorit
</tr>
</table>
<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">
<!-- -->
</a>
@ -387,6 +399,6 @@ extends org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorit
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>SampleOnTable (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>SampleOnTable (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -91,12 +91,17 @@
<li>org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm</li>
<li>
<ul class="inheritance">
<li>org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalInfraAlgorithm</li>
<li>
<ul class="inheritance">
<li>org.gcube.dataaccess.algorithms.drmalgorithms.SampleOnTable</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
@ -107,7 +112,7 @@
<hr>
<br>
<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
database. It retrieves the first 100 rows of a table.</div>
</li>
@ -186,6 +191,13 @@ extends org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorit
</tr>
</table>
<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">
<!-- -->
</a>
@ -387,6 +399,6 @@ extends org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorit
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>SmartCorrectionEnum (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>SmartCorrectionEnum (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -328,6 +328,6 @@ not permitted.)</div>
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>SmartSampleOnTable (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>SmartSampleOnTable (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -91,12 +91,17 @@
<li>org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm</li>
<li>
<ul class="inheritance">
<li>org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalInfraAlgorithm</li>
<li>
<ul class="inheritance">
<li>org.gcube.dataaccess.algorithms.drmalgorithms.SmartSampleOnTable</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
@ -107,7 +112,7 @@
<hr>
<br>
<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
database. It retrieves 100 rows of a table randomly that have the maximum
number of columns not null.</div>
@ -187,6 +192,13 @@ extends org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorit
</tr>
</table>
<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">
<!-- -->
</a>
@ -388,6 +400,6 @@ extends org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorit
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>SubmitQuery (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>SubmitQuery (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -91,12 +91,17 @@
<li>org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm</li>
<li>
<ul class="inheritance">
<li>org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalInfraAlgorithm</li>
<li>
<ul class="inheritance">
<li>org.gcube.dataaccess.algorithms.drmalgorithms.SubmitQuery</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
@ -107,7 +112,7 @@
<hr>
<br>
<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
map.</div>
</li>
@ -190,6 +195,13 @@ extends org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorit
</tr>
</table>
<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">
<!-- -->
</a>
@ -416,6 +428,6 @@ extends org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorit
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>SubmitQueryEnum (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>SubmitQueryEnum (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -316,6 +316,6 @@ not permitted.)</div>
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.GetTableDetails (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.GetTableDetails (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -112,6 +112,6 @@
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.ListDBInfo (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.ListDBInfo (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -112,6 +112,6 @@
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.ListNames (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.ListNames (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -112,6 +112,6 @@
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.ListSchemas (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.ListSchemas (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -112,6 +112,6 @@
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.ListTables (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.ListTables (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -112,6 +112,6 @@
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.RandomSampleOnTable (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.RandomSampleOnTable (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -112,6 +112,6 @@
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.SampleOnTable (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.SampleOnTable (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -112,6 +112,6 @@
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.SmartCorrectionEnum (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.SmartCorrectionEnum (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -161,6 +161,6 @@ the order they are declared.</div>
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.SmartSampleOnTable (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.SmartSampleOnTable (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -112,6 +112,6 @@
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.SubmitQuery (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.SubmitQuery (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -112,6 +112,6 @@
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.SubmitQueryEnum (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>Uses of Class org.gcube.dataaccess.algorithms.drmalgorithms.SubmitQueryEnum (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -161,6 +161,6 @@ the order they are declared.</div>
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>org.gcube.dataaccess.algorithms.drmalgorithms (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>org.gcube.dataaccess.algorithms.drmalgorithms (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>org.gcube.dataaccess.algorithms.drmalgorithms (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>org.gcube.dataaccess.algorithms.drmalgorithms (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -202,6 +202,6 @@
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>org.gcube.dataaccess.algorithms.drmalgorithms Class Hierarchy (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>org.gcube.dataaccess.algorithms.drmalgorithms Class Hierarchy (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -77,6 +77,8 @@
<ul>
<li type="circle">org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm (implements org.gcube.dataanalysis.ecoengine.interfaces.Transducerer)
<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/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>
@ -91,6 +93,8 @@
</ul>
</li>
</ul>
</li>
</ul>
<h2 title="Enum Hierarchy">Enum Hierarchy</h2>
<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>
@ -150,6 +154,6 @@
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>Uses of Package org.gcube.dataaccess.algorithms.drmalgorithms (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>Uses of Package org.gcube.dataaccess.algorithms.drmalgorithms (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -148,6 +148,6 @@
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>AbsoluteSpeciesBarChartsAlgorithm (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>AbsoluteSpeciesBarChartsAlgorithm (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -439,6 +439,6 @@ extends org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorit
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>SimpleAlg (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>SimpleAlg (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -385,6 +385,6 @@ extends org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorit
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>TestSimpleAlg (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>TestSimpleAlg (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -256,6 +256,6 @@ extends <a href="http://download.oracle.com/javase/6/docs/api/java/lang/Object.h
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>TestTransducers (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>TestTransducers (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -256,6 +256,6 @@ extends <a href="http://download.oracle.com/javase/6/docs/api/java/lang/Object.h
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>Uses of Class org.gcube.dataaccess.algorithms.examples.AbsoluteSpeciesBarChartsAlgorithm (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>Uses of Class org.gcube.dataaccess.algorithms.examples.AbsoluteSpeciesBarChartsAlgorithm (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -112,6 +112,6 @@
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>Uses of Class org.gcube.dataaccess.algorithms.examples.SimpleAlg (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>Uses of Class org.gcube.dataaccess.algorithms.examples.SimpleAlg (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -112,6 +112,6 @@
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>Uses of Class org.gcube.dataaccess.algorithms.examples.TestSimpleAlg (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>Uses of Class org.gcube.dataaccess.algorithms.examples.TestSimpleAlg (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -112,6 +112,6 @@
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>Uses of Class org.gcube.dataaccess.algorithms.examples.TestTransducers (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>Uses of Class org.gcube.dataaccess.algorithms.examples.TestTransducers (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -112,6 +112,6 @@
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>org.gcube.dataaccess.algorithms.examples (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>org.gcube.dataaccess.algorithms.examples (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>org.gcube.dataaccess.algorithms.examples (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>org.gcube.dataaccess.algorithms.examples (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -142,6 +142,6 @@
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>org.gcube.dataaccess.algorithms.examples Class Hierarchy (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>org.gcube.dataaccess.algorithms.examples Class Hierarchy (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -132,6 +132,6 @@
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>Uses of Package org.gcube.dataaccess.algorithms.examples (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>Uses of Package org.gcube.dataaccess.algorithms.examples (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -112,6 +112,6 @@
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>TestListDBInfo (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>TestListDBInfo (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -256,6 +256,6 @@ extends <a href="http://download.oracle.com/javase/6/docs/api/java/lang/Object.h
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>TestListNames (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>TestListNames (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -256,6 +256,6 @@ extends <a href="http://download.oracle.com/javase/6/docs/api/java/lang/Object.h
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>TestListSchemas (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>TestListSchemas (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -256,6 +256,6 @@ extends <a href="http://download.oracle.com/javase/6/docs/api/java/lang/Object.h
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>TestListTables (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>TestListTables (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -256,6 +256,6 @@ extends <a href="http://download.oracle.com/javase/6/docs/api/java/lang/Object.h
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>TestSubmitQuery (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>TestSubmitQuery (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -256,6 +256,6 @@ extends <a href="http://download.oracle.com/javase/6/docs/api/java/lang/Object.h
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>TestTableDetails (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>TestTableDetails (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -256,6 +256,6 @@ extends <a href="http://download.oracle.com/javase/6/docs/api/java/lang/Object.h
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>Uses of Class org.gcube.dataaccess.algorithms.test.TestListDBInfo (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>Uses of Class org.gcube.dataaccess.algorithms.test.TestListDBInfo (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -112,6 +112,6 @@
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>Uses of Class org.gcube.dataaccess.algorithms.test.TestListNames (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>Uses of Class org.gcube.dataaccess.algorithms.test.TestListNames (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -112,6 +112,6 @@
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>Uses of Class org.gcube.dataaccess.algorithms.test.TestListSchemas (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>Uses of Class org.gcube.dataaccess.algorithms.test.TestListSchemas (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -112,6 +112,6 @@
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>Uses of Class org.gcube.dataaccess.algorithms.test.TestListTables (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>Uses of Class org.gcube.dataaccess.algorithms.test.TestListTables (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -112,6 +112,6 @@
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>Uses of Class org.gcube.dataaccess.algorithms.test.TestSubmitQuery (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>Uses of Class org.gcube.dataaccess.algorithms.test.TestSubmitQuery (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -112,6 +112,6 @@
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>Uses of Class org.gcube.dataaccess.algorithms.test.TestTableDetails (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>Uses of Class org.gcube.dataaccess.algorithms.test.TestTableDetails (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -112,6 +112,6 @@
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>org.gcube.dataaccess.algorithms.test (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>org.gcube.dataaccess.algorithms.test (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>org.gcube.dataaccess.algorithms.test (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>org.gcube.dataaccess.algorithms.test (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -150,6 +150,6 @@
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>org.gcube.dataaccess.algorithms.test Class Hierarchy (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>org.gcube.dataaccess.algorithms.test Class Hierarchy (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -130,6 +130,6 @@
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>Uses of Package org.gcube.dataaccess.algorithms.test (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>Uses of Package org.gcube.dataaccess.algorithms.test (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -112,6 +112,6 @@
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>RegressionListDBInfo (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>RegressionListDBInfo (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -256,6 +256,6 @@ extends <a href="http://download.oracle.com/javase/6/docs/api/java/lang/Object.h
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>RegressionListNames (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>RegressionListNames (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -256,6 +256,6 @@ extends <a href="http://download.oracle.com/javase/6/docs/api/java/lang/Object.h
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>RegressionListSchemas (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>RegressionListSchemas (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -256,6 +256,6 @@ extends <a href="http://download.oracle.com/javase/6/docs/api/java/lang/Object.h
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>RegressionListTables (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>RegressionListTables (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -256,6 +256,6 @@ extends <a href="http://download.oracle.com/javase/6/docs/api/java/lang/Object.h
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>RegressionRandomSampleOnTable (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>RegressionRandomSampleOnTable (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -256,6 +256,6 @@ extends <a href="http://download.oracle.com/javase/6/docs/api/java/lang/Object.h
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>RegressionSampleOnTable (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>RegressionSampleOnTable (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -256,6 +256,6 @@ extends <a href="http://download.oracle.com/javase/6/docs/api/java/lang/Object.h
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>RegressionSmartSampleOnTable (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>RegressionSmartSampleOnTable (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -256,6 +256,6 @@ extends <a href="http://download.oracle.com/javase/6/docs/api/java/lang/Object.h
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>RegressionSubmitQuery (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>RegressionSubmitQuery (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -256,6 +256,6 @@ extends <a href="http://download.oracle.com/javase/6/docs/api/java/lang/Object.h
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>RegressionTableDetails (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>RegressionTableDetails (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -256,6 +256,6 @@ extends <a href="http://download.oracle.com/javase/6/docs/api/java/lang/Object.h
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>Uses of Class org.gcube.dataaccess.algorithms.test.regressiontest.RegressionListDBInfo (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>Uses of Class org.gcube.dataaccess.algorithms.test.regressiontest.RegressionListDBInfo (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -112,6 +112,6 @@
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>Uses of Class org.gcube.dataaccess.algorithms.test.regressiontest.RegressionListNames (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>Uses of Class org.gcube.dataaccess.algorithms.test.regressiontest.RegressionListNames (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -112,6 +112,6 @@
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>Uses of Class org.gcube.dataaccess.algorithms.test.regressiontest.RegressionListSchemas (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>Uses of Class org.gcube.dataaccess.algorithms.test.regressiontest.RegressionListSchemas (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -112,6 +112,6 @@
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>Uses of Class org.gcube.dataaccess.algorithms.test.regressiontest.RegressionListTables (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>Uses of Class org.gcube.dataaccess.algorithms.test.regressiontest.RegressionListTables (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -112,6 +112,6 @@
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>Uses of Class org.gcube.dataaccess.algorithms.test.regressiontest.RegressionRandomSampleOnTable (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>Uses of Class org.gcube.dataaccess.algorithms.test.regressiontest.RegressionRandomSampleOnTable (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -112,6 +112,6 @@
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>Uses of Class org.gcube.dataaccess.algorithms.test.regressiontest.RegressionSampleOnTable (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>Uses of Class org.gcube.dataaccess.algorithms.test.regressiontest.RegressionSampleOnTable (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -112,6 +112,6 @@
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>Uses of Class org.gcube.dataaccess.algorithms.test.regressiontest.RegressionSmartSampleOnTable (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>Uses of Class org.gcube.dataaccess.algorithms.test.regressiontest.RegressionSmartSampleOnTable (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -112,6 +112,6 @@
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>Uses of Class org.gcube.dataaccess.algorithms.test.regressiontest.RegressionSubmitQuery (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>Uses of Class org.gcube.dataaccess.algorithms.test.regressiontest.RegressionSubmitQuery (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -112,6 +112,6 @@
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>Uses of Class org.gcube.dataaccess.algorithms.test.regressiontest.RegressionTableDetails (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>Uses of Class org.gcube.dataaccess.algorithms.test.regressiontest.RegressionTableDetails (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -112,6 +112,6 @@
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>org.gcube.dataaccess.algorithms.test.regressiontest (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>org.gcube.dataaccess.algorithms.test.regressiontest (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>org.gcube.dataaccess.algorithms.test.regressiontest (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>org.gcube.dataaccess.algorithms.test.regressiontest (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -162,6 +162,6 @@
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>org.gcube.dataaccess.algorithms.test.regressiontest Class Hierarchy (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>org.gcube.dataaccess.algorithms.test.regressiontest Class Hierarchy (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -133,6 +133,6 @@
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>Uses of Package org.gcube.dataaccess.algorithms.test.regressiontest (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>Uses of Package org.gcube.dataaccess.algorithms.test.regressiontest (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -112,6 +112,6 @@
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>Overview List (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>Overview List (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
</head>
<body>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>Overview (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>Overview (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -64,7 +64,7 @@
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<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 class="contentContainer">
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Packages table, listing packages, and an explanation">
@ -138,6 +138,6 @@
<!-- -->
</a></div>
<!-- ======== 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>
</html>

@ -2,16 +2,16 @@
<!-- NewPage -->
<html lang="en">
<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">
<title>Class Hierarchy (DatabasesResourcesManagerAlgorithms 1.4.0-SNAPSHOT API)</title>
<meta name="date" content="2016-11-22">
<title>Class Hierarchy (DatabasesResourcesManagerAlgorithms 1.5.0-SNAPSHOT API)</title>
<meta name="date" content="2017-02-28">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
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>
@ -90,6 +90,9 @@
<li type="circle">org.gcube.dataanalysis.ecoengine.interfaces.StandardLocalExternalAlgorithm (implements org.gcube.dataanalysis.ecoengine.interfaces.Transducerer)
<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/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/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>
@ -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/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.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/SubmitQuery.html" title="class in org.gcube.dataaccess.algorithms.drmalgorithms"><span class="strong">SubmitQuery</span></a></li>
</ul>
</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/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>
@ -172,6 +176,6 @@
<!-- -->
</a></div>
<!-- ======== 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>
</html>

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

Loading…
Cancel
Save