diff --git a/DataMinerAlgorithmsCrawler/src/main/java/org/gcube/data/publishing/gCatFeeder/collectors/dm/DMAlgorithmsInfoCollector.java b/DataMinerAlgorithmsCrawler/src/main/java/org/gcube/data/publishing/gCatFeeder/collectors/dm/DMAlgorithmsInfoCollector.java index fb0aca9..82f22b7 100644 --- a/DataMinerAlgorithmsCrawler/src/main/java/org/gcube/data/publishing/gCatFeeder/collectors/dm/DMAlgorithmsInfoCollector.java +++ b/DataMinerAlgorithmsCrawler/src/main/java/org/gcube/data/publishing/gCatFeeder/collectors/dm/DMAlgorithmsInfoCollector.java @@ -4,15 +4,20 @@ import java.util.HashSet; import java.util.List; import java.util.Map; import java.util.Set; +import java.util.regex.Matcher; +import java.util.regex.Pattern; +import org.gcube.common.resources.gcore.ServiceEndpoint; import org.gcube.data.analysis.dataminermanagercl.server.DataMinerService; import org.gcube.data.analysis.dataminermanagercl.server.dmservice.SClient; import org.gcube.data.analysis.dataminermanagercl.shared.process.Operator; import org.gcube.data.analysis.dataminermanagercl.shared.process.OperatorCategory; import org.gcube.data.analysis.dataminermanagercl.shared.process.OperatorsClassification; import org.gcube.data.publishing.gCatFeeder.collectors.dm.model.InternalAlgorithmDescriptor; -import org.gcube.data.publishing.gCatFeeder.collectors.dm.model.InternalAlgorithmDescriptor.Parameter; +import org.gcube.data.publishing.gCatFeeder.collectors.dm.model.Parameter; +import org.gcube.data.publishing.gCatFeeder.collectors.dm.model.UserIdentity; import org.gcube.data.publishing.gCatFeeder.model.EnvironmentConfiguration; +import org.gcube.data.publishing.gCatFeeder.utils.ISUtils; import org.gcube.data.publishing.gCatfeeder.collectors.DataCollector; import org.gcube.data.publishing.gCatfeeder.collectors.model.faults.CollectorFault; @@ -21,6 +26,9 @@ import lombok.extern.slf4j.Slf4j; @Slf4j public class DMAlgorithmsInfoCollector implements DataCollector { + private static final Pattern p = Pattern.compile("\\{Published by (.*)\\((.*\\..*\\)).*\\}$"); + + private Map env=null; @@ -35,7 +43,8 @@ public class DMAlgorithmsInfoCollector implements DataCollector toReturn=new HashSet(); SClient client=new DataMinerService().getClient(); -// client. + String wpsbaseUrl=getWPSBasePath(); + List opClassifications=client.getOperatorsClassifications(); log.debug("Found {} classifications.",opClassifications.size()); @@ -79,8 +88,9 @@ public class DMAlgorithmsInfoCollector implements DataCollector - - Input Parameter - String - false - Input parameter expected for the execution of the process - - - Output Parameter - String - false - Output parameter expected from the execution of the process - + + Input Parameter + String + false + Input parameter expected for the execution of the process + + + Output Parameter + String + false + Output parameter expected from the execution of the process + + + + Process Author + String + false + * + + The name of the author, with email and ORCID. The format should + be: family, given[, email][, ORCID]. Example: Smith, John, + js@acme.org, orcid.org/0000-0002-1825-0097 + + ^[a-zA-ZÀ-ÿ .'-]+, [a-zA-ZÀ-ÿ .'-]+[, + ]*([a-zA-Z0-9_!#$%’*+=?`{|}~^.-]+@[a-zA-Z0-9À-ÿ.-]+)?[, + ]*(orcid.org\/0000-000(1-[5-9]|2-[0-9]|3-[0-4])\d\d\d-\d\d\d[\dX])?$ + + \ No newline at end of file diff --git a/DataMinerAlgorithmsCrawler/src/test/java/org/gcube/data/publishing/gCatFeeder/collectors/dm/LocalTest.java b/DataMinerAlgorithmsCrawler/src/test/java/org/gcube/data/publishing/gCatFeeder/collectors/dm/LocalTest.java deleted file mode 100644 index 2d9f9e6..0000000 --- a/DataMinerAlgorithmsCrawler/src/test/java/org/gcube/data/publishing/gCatFeeder/collectors/dm/LocalTest.java +++ /dev/null @@ -1,12 +0,0 @@ -package org.gcube.data.publishing.gCatFeeder.collectors.dm; - -import org.junit.Test; - -public class LocalTest { - - @Test - public void initTest() throws Exception { - new DataMinerPlugin().init(); - } - -} diff --git a/DataMinerAlgorithmsCrawler/src/test/java/org/gcube/data/publishing/gCatFeeder/collectors/dm/TranslationTest.java b/DataMinerAlgorithmsCrawler/src/test/java/org/gcube/data/publishing/gCatFeeder/collectors/dm/TranslationTest.java index ea9450c..513e7c4 100644 --- a/DataMinerAlgorithmsCrawler/src/test/java/org/gcube/data/publishing/gCatFeeder/collectors/dm/TranslationTest.java +++ b/DataMinerAlgorithmsCrawler/src/test/java/org/gcube/data/publishing/gCatFeeder/collectors/dm/TranslationTest.java @@ -16,6 +16,7 @@ import org.gcube.data.publishing.gCatfeeder.collectors.DataCollector; import org.gcube.data.publishing.gCatfeeder.collectors.DataTransformer; import org.gcube.data.publishing.gCatfeeder.collectors.model.faults.CatalogueNotSupportedException; import org.gcube.data.publishing.gCatfeeder.collectors.model.faults.CollectorFault; +import org.junit.Assert; import org.junit.Assume; import org.junit.Test; @@ -44,4 +45,5 @@ public class TranslationTest extends BaseCollectorTest{ } } + } diff --git a/commons/src/main/java/org/gcube/data/publishing/gCatFeeder/utils/ISUtils.java b/commons/src/main/java/org/gcube/data/publishing/gCatFeeder/utils/ISUtils.java index 767a7cc..52d46d5 100644 --- a/commons/src/main/java/org/gcube/data/publishing/gCatFeeder/utils/ISUtils.java +++ b/commons/src/main/java/org/gcube/data/publishing/gCatFeeder/utils/ISUtils.java @@ -59,6 +59,20 @@ public class ISUtils { return client.submit(query); } + + public static List queryForServiceEndpointsByName(String category, String name){ + log.debug("Querying for Service Endpoints [category : {} , name : {}, currentScope : {} ]",category,name,ContextUtils.getCurrentScope()); + + SimpleQuery query = queryFor(ServiceEndpoint.class); + + query.addCondition("$resource/Profile/Category/text() eq '"+category+"'") + .addCondition("$resource/Profile/Name/text() eq '"+name+"'"); + // .setResult("$resource/Profile/AccessPoint"); + + DiscoveryClient client = clientFor(ServiceEndpoint.class); + + return client.submit(query); + } public static List queryForGCoreEndpoint(String serviceClass,String serviceName){ log.debug("Querying for GCore Endpoints [ServiceClass : {} , ServiceName : {}, currentScope : {} ]",serviceClass,serviceName,ContextUtils.getCurrentScope()); diff --git a/gCat-Controller/src/main/java/org/gcube/data/publishing/gCataFeeder/catalogues/gCat/GCatController.java b/gCat-Controller/src/main/java/org/gcube/data/publishing/gCataFeeder/catalogues/gCat/GCatController.java index 54200d3..bfa7030 100644 --- a/gCat-Controller/src/main/java/org/gcube/data/publishing/gCataFeeder/catalogues/gCat/GCatController.java +++ b/gCat-Controller/src/main/java/org/gcube/data/publishing/gCataFeeder/catalogues/gCat/GCatController.java @@ -1,5 +1,6 @@ package org.gcube.data.publishing.gCataFeeder.catalogues.gCat; +import java.io.ByteArrayInputStream; import java.io.IOException; import java.net.MalformedURLException; import java.net.URL; @@ -85,14 +86,14 @@ public class GCatController implements CatalogueController{ if(isCustomToken()) resetToken(); - - + + // setting default configuration config=new ControllerConfiguration(); config.setOnClash(PublishingPolicy.UPDATE); - - - + + + }catch(ControllerInstantiationFault e) { throw e; } @@ -125,37 +126,37 @@ public class GCatController implements CatalogueController{ log.debug("Publishing {} ",arg0); String serialized=arg0.toCatalogueFormat(); try { - if(isCustomToken()) - setCustomToken(); + if(isCustomToken()) + setCustomToken(); + + log.debug("Parsing data.."); + JsonNode node=mapper.readTree(serialized); + if(!node.hasNonNull("item")) throw new WrongObjectFormatException("No \"item\" specified in serialized object"); + JsonNode itemNode=node.path("item"); + if(node.hasNonNull("profile")) { + log.debug("Publishing profile.."); + String xmlProfile=node.path("profile").asText(); + String profileName=getProfileName(xmlProfile); + createProfile(profileName, xmlProfile); + } + + log.debug("Publishing Item.."); + String itemResp=createItem(itemNode.asText()); + String itemId = getId(itemResp); + log.debug("Pubilshed Item with ID {} ",itemId); + + if(node.hasNonNull("resources")) { + log.debug("Pubilshing resources for {} ",itemId); + Iterator resIterator=node.path("resources").elements(); + while(resIterator.hasNext()) { + JsonNode resNode=resIterator.next(); + String resourceName=resNode.path("name").asText(); + createResource(itemId, resourceName, resNode.asText()); + } + } + + return new PublishReport(true, itemId); - log.debug("Parsing data.."); - JsonNode node=mapper.readTree(serialized); - if(!node.hasNonNull("item")) throw new WrongObjectFormatException("No \"item\" specified in serialized object"); - JsonNode itemNode=node.path("item"); - if(node.hasNonNull("profile")) { - log.debug("Publishing profile.."); - String xmlProfile=node.path("profile").asText(); - String profileName=getProfileName(xmlProfile); - createProfile(profileName, xmlProfile); - } - - log.debug("Publishing Item.."); - String itemResp=createItem(itemNode.asText()); - String itemId = getId(itemResp); - log.debug("Pubilshed Item with ID {} ",itemId); - - if(node.hasNonNull("resources")) { - log.debug("Pubilshing resources for {} ",itemId); - Iterator resIterator=node.path("resources").elements(); - while(resIterator.hasNext()) { - JsonNode resNode=resIterator.next(); - String resourceName=resNode.path("name").asText(); - createResource(itemId, resourceName, resNode.asText()); - } - } - - return new PublishReport(true, itemId); - } catch(WrongObjectFormatException | PublicationException e) { throw e; } catch (Throwable e) { @@ -214,9 +215,9 @@ public class GCatController implements CatalogueController{ if(isForcedUrl()) resource = new Resource(getForcedUrl()); else resource=new Resource(); - + // Try to create - + try { log.debug("Trying to create resource {} for package {} ",resourceName,itemId); return resource.create(itemId, toCreate); @@ -241,15 +242,15 @@ public class GCatController implements CatalogueController{ } } log.debug("Found id {} for resource Name {} ",resourceId,resourceName); - + return resource.update(itemId, resourceId, toCreate); } default : return null; } }else throw e; } - - + + }catch(WebApplicationException e) { handleWebException(e); return null; @@ -278,11 +279,11 @@ public class GCatController implements CatalogueController{ } - - - - - + + + + + // instance utils private PublishingPolicy getOnClash() { @@ -330,7 +331,7 @@ public class GCatController implements CatalogueController{ private static String getProfileName(String xmlProfile) throws WrongObjectFormatException { try{ - Document doc = builder.parse(xmlProfile); + Document doc = builder.parse(new ByteArrayInputStream(xmlProfile.getBytes())); return (String) expr.evaluate(doc, XPathConstants.STRING); }catch(Throwable t) { throw new WrongObjectFormatException("Unable to parse profile. ",t); @@ -364,7 +365,13 @@ public class GCatController implements CatalogueController{ private static void handleWebException(WebApplicationException e) throws WrongObjectFormatException, PublicationException { log.debug("Received Web Exception {} ",e); - String msg=e.getResponse().readEntity(String.class); + String msg=null; + try{ + e.getResponse().readEntity(String.class); + }catch(IllegalStateException e1) { + //unable to read outbound + msg="Status : "+e.getResponse().getStatus(); + } switch(e.getResponse().getStatus()) { case 400 : throw new WrongObjectFormatException("BAD Request : "+msg,e); case 401 : throw new CatalogueInteractionException("Unauthorized : "+msg,e); @@ -377,5 +384,5 @@ public class GCatController implements CatalogueController{ } - + } diff --git a/gCat-Controller/src/test/java/org/gcube/data/publishing/gCatFeeder/catalogues/gCat/Interactions.java b/gCat-Controller/src/test/java/org/gcube/data/publishing/gCatFeeder/catalogues/gCat/Interactions.java index 6d4d6bb..e08ca8d 100644 --- a/gCat-Controller/src/test/java/org/gcube/data/publishing/gCatFeeder/catalogues/gCat/Interactions.java +++ b/gCat-Controller/src/test/java/org/gcube/data/publishing/gCatFeeder/catalogues/gCat/Interactions.java @@ -1,8 +1,5 @@ package org.gcube.data.publishing.gCatFeeder.catalogues.gCat; -import java.nio.file.Files; -import java.nio.file.Paths; - import org.gcube.data.publishing.gCatFeeder.catalogues.CatalogueController; import org.gcube.data.publishing.gCatFeeder.catalogues.model.PublishReport; import org.gcube.data.publishing.gCatFeeder.catalogues.model.faults.CatalogueInteractionException; @@ -33,11 +30,16 @@ public class Interactions extends BaseCataloguePluginTest{ @Override public String toCatalogueFormat() { try { - return new String(Files.readAllBytes(Paths.get(fileName))); + return convertStreamToString(this.getClass().getResourceAsStream((fileName))); }catch(Exception e) { - throw new RuntimeException("Unable to read file "+fileName); + throw new RuntimeException("Unable to read file "+fileName,e); } } + + static String convertStreamToString(java.io.InputStream is) { + java.util.Scanner s = new java.util.Scanner(is).useDelimiter("\\A"); + return s.hasNext() ? s.next() : ""; + } } diff --git a/gCat-Controller/src/test/resources/empties.json b/gCat-Controller/src/test/resources/org/gcube/data/publishing/gCatFeeder/catalogues/gCat/empties.json similarity index 100% rename from gCat-Controller/src/test/resources/empties.json rename to gCat-Controller/src/test/resources/org/gcube/data/publishing/gCatFeeder/catalogues/gCat/empties.json diff --git a/gCat-Controller/src/test/resources/full-algorithm.json b/gCat-Controller/src/test/resources/org/gcube/data/publishing/gCatFeeder/catalogues/gCat/full-algorithm.json similarity index 100% rename from gCat-Controller/src/test/resources/full-algorithm.json rename to gCat-Controller/src/test/resources/org/gcube/data/publishing/gCatFeeder/catalogues/gCat/full-algorithm.json diff --git a/gCat-Controller/src/test/resources/full.json b/gCat-Controller/src/test/resources/org/gcube/data/publishing/gCatFeeder/catalogues/gCat/full.json similarity index 100% rename from gCat-Controller/src/test/resources/full.json rename to gCat-Controller/src/test/resources/org/gcube/data/publishing/gCatFeeder/catalogues/gCat/full.json diff --git a/gCat-Controller/src/test/resources/missingProfile.json b/gCat-Controller/src/test/resources/org/gcube/data/publishing/gCatFeeder/catalogues/gCat/missingProfile.json similarity index 100% rename from gCat-Controller/src/test/resources/missingProfile.json rename to gCat-Controller/src/test/resources/org/gcube/data/publishing/gCatFeeder/catalogues/gCat/missingProfile.json diff --git a/gCat-Controller/src/test/resources/noItem.json b/gCat-Controller/src/test/resources/org/gcube/data/publishing/gCatFeeder/catalogues/gCat/noItem.json similarity index 100% rename from gCat-Controller/src/test/resources/noItem.json rename to gCat-Controller/src/test/resources/org/gcube/data/publishing/gCatFeeder/catalogues/gCat/noItem.json diff --git a/gCat-Controller/src/test/resources/onlyItem.json b/gCat-Controller/src/test/resources/org/gcube/data/publishing/gCatFeeder/catalogues/gCat/onlyItem.json similarity index 100% rename from gCat-Controller/src/test/resources/onlyItem.json rename to gCat-Controller/src/test/resources/org/gcube/data/publishing/gCatFeeder/catalogues/gCat/onlyItem.json diff --git a/gCat-Controller/target/apidocs/allclasses-frame.html b/gCat-Controller/target/apidocs/allclasses-frame.html deleted file mode 100644 index 3a082c6..0000000 --- a/gCat-Controller/target/apidocs/allclasses-frame.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - -All Classes (gCat Controller 1.0.0-SNAPSHOT API) - - - - - -

All Classes

- - - diff --git a/gCat-Controller/target/apidocs/allclasses-noframe.html b/gCat-Controller/target/apidocs/allclasses-noframe.html deleted file mode 100644 index 86cb917..0000000 --- a/gCat-Controller/target/apidocs/allclasses-noframe.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - -All Classes (gCat Controller 1.0.0-SNAPSHOT API) - - - - - -

All Classes

- - - diff --git a/gCat-Controller/target/apidocs/constant-values.html b/gCat-Controller/target/apidocs/constant-values.html deleted file mode 100644 index 63b2576..0000000 --- a/gCat-Controller/target/apidocs/constant-values.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - -Constant Field Values (gCat Controller 1.0.0-SNAPSHOT API) - - - - - - - - - - - -
-

Constant Field Values

-

Contents

-
- - - - -

Copyright © 2019. All Rights Reserved.

- - diff --git a/gCat-Controller/target/apidocs/deprecated-list.html b/gCat-Controller/target/apidocs/deprecated-list.html deleted file mode 100644 index 86e4ee1..0000000 --- a/gCat-Controller/target/apidocs/deprecated-list.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - -Deprecated List (gCat Controller 1.0.0-SNAPSHOT API) - - - - - - - - -
- - - - - - - -
- - -
-

Deprecated API

-

Contents

-
- -
- - - - - - - -
- - -

Copyright © 2019. All Rights Reserved.

- - diff --git a/gCat-Controller/target/apidocs/help-doc.html b/gCat-Controller/target/apidocs/help-doc.html deleted file mode 100644 index 7f97ae8..0000000 --- a/gCat-Controller/target/apidocs/help-doc.html +++ /dev/null @@ -1,225 +0,0 @@ - - - - - - -API Help (gCat Controller 1.0.0-SNAPSHOT API) - - - - - - - - - - - -
-

How This API Document Is Organized

-
This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.
-
-
-
    -
  • -

    Package

    -

    Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain six categories:

    -
      -
    • Interfaces (italic)
    • -
    • Classes
    • -
    • Enums
    • -
    • Exceptions
    • -
    • Errors
    • -
    • Annotation Types
    • -
    -
  • -
  • -

    Class/Interface

    -

    Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:

    -
      -
    • Class inheritance diagram
    • -
    • Direct Subclasses
    • -
    • All Known Subinterfaces
    • -
    • All Known Implementing Classes
    • -
    • Class/interface declaration
    • -
    • Class/interface description
    • -
    -
      -
    • Nested Class Summary
    • -
    • Field Summary
    • -
    • Constructor Summary
    • -
    • Method Summary
    • -
    -
      -
    • Field Detail
    • -
    • Constructor Detail
    • -
    • Method Detail
    • -
    -

    Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.

    -
  • -
  • -

    Annotation Type

    -

    Each annotation type has its own separate page with the following sections:

    -
      -
    • Annotation Type declaration
    • -
    • Annotation Type description
    • -
    • Required Element Summary
    • -
    • Optional Element Summary
    • -
    • Element Detail
    • -
    -
  • -
  • -

    Enum

    -

    Each enum has its own separate page with the following sections:

    -
      -
    • Enum declaration
    • -
    • Enum description
    • -
    • Enum Constant Summary
    • -
    • Enum Constant Detail
    • -
    -
  • -
  • -

    Use

    -

    Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.

    -
  • -
  • -

    Tree (Class Hierarchy)

    -

    There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with java.lang.Object. The interfaces do not inherit from java.lang.Object.

    -
      -
    • When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.
    • -
    • When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.
    • -
    -
  • -
  • -

    Deprecated API

    -

    The Deprecated API page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.

    -
  • -
  • -

    Index

    -

    The Index contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.

    -
  • -
  • -

    Prev/Next

    -

    These links take you to the next or previous class, interface, package, or related page.

    -
  • -
  • -

    Frames/No Frames

    -

    These links show and hide the HTML frames. All pages are available with or without frames.

    -
  • -
  • -

    All Classes

    -

    The All Classes link shows all classes and interfaces except non-static nested types.

    -
  • -
  • -

    Serialized Form

    -

    Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.

    -
  • -
  • -

    Constant Field Values

    -

    The Constant Field Values page lists the static final fields and their values.

    -
  • -
-This help file applies to API documentation generated using the standard doclet.
- - - - -

Copyright © 2019. All Rights Reserved.

- - diff --git a/gCat-Controller/target/apidocs/index-all.html b/gCat-Controller/target/apidocs/index-all.html deleted file mode 100644 index 37bfab2..0000000 --- a/gCat-Controller/target/apidocs/index-all.html +++ /dev/null @@ -1,194 +0,0 @@ - - - - - - -Index (gCat Controller 1.0.0-SNAPSHOT API) - - - - - - - - -
- - - - - - - -
- - -
C G I O P S  - - -

C

-
-
configure(ControllerConfiguration) - Method in class org.gcube.data.publishing.gCataFeeder.catalogues.gCat.GCatController
-
 
-
- - - -

G

-
-
GCatController - Class in org.gcube.data.publishing.gCataFeeder.catalogues.gCat
-
 
-
GCatController(CatalogueInstanceDescriptor) - Constructor for class org.gcube.data.publishing.gCataFeeder.catalogues.gCat.GCatController
-
 
-
GCatPlugin - Class in org.gcube.data.publishing.gCataFeeder.catalogues.gCat
-
 
-
GCatPlugin() - Constructor for class org.gcube.data.publishing.gCataFeeder.catalogues.gCat.GCatPlugin
-
 
-
getDescriptor() - Method in class org.gcube.data.publishing.gCataFeeder.catalogues.gCat.GCatPlugin
-
 
-
- - - -

I

-
-
init() - Method in class org.gcube.data.publishing.gCataFeeder.catalogues.gCat.GCatPlugin
-
 
-
initInScope() - Method in class org.gcube.data.publishing.gCataFeeder.catalogues.gCat.GCatPlugin
-
 
-
instantiateController(CatalogueInstanceDescriptor) - Method in class org.gcube.data.publishing.gCataFeeder.catalogues.gCat.GCatPlugin
-
 
-
- - - -

O

-
-
org.gcube.data.publishing.gCataFeeder.catalogues.gCat - package org.gcube.data.publishing.gCataFeeder.catalogues.gCat
-
 
-
- - - -

P

-
-
publishItem(CatalogueFormatData) - Method in class org.gcube.data.publishing.gCataFeeder.catalogues.gCat.GCatController
-
-
Expected structure - - { - "profile" : "", - "item" : "", - "resources" : [ - "", - "", - ....] - } - - NB serialized resources are updated with "package_id" set as the published item id
-
-
- - - -

S

-
-
setEnvironmentConfiguration(EnvironmentConfiguration) - Method in class org.gcube.data.publishing.gCataFeeder.catalogues.gCat.GCatPlugin
-
 
-
-C G I O P S 
- -
- - - - - - - -
- - -

Copyright © 2019. All Rights Reserved.

- - diff --git a/gCat-Controller/target/apidocs/index.html b/gCat-Controller/target/apidocs/index.html deleted file mode 100644 index 1b159a8..0000000 --- a/gCat-Controller/target/apidocs/index.html +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - -gCat Controller 1.0.0-SNAPSHOT API - - - - - - -<noscript> -<div>JavaScript is disabled on your browser.</div> -</noscript> -<h2>Frame Alert</h2> -<p>This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to <a href="org/gcube/data/publishing/gCataFeeder/catalogues/gCat/package-summary.html">Non-frame version</a>.</p> - - - diff --git a/gCat-Controller/target/apidocs/org/gcube/data/publishing/gCataFeeder/catalogues/gCat/GCatController.html b/gCat-Controller/target/apidocs/org/gcube/data/publishing/gCataFeeder/catalogues/gCat/GCatController.html deleted file mode 100644 index bebc7a7..0000000 --- a/gCat-Controller/target/apidocs/org/gcube/data/publishing/gCataFeeder/catalogues/gCat/GCatController.html +++ /dev/null @@ -1,336 +0,0 @@ - - - - - - -GCatController (gCat Controller 1.0.0-SNAPSHOT API) - - - - - - - - - - - - -
-
org.gcube.data.publishing.gCataFeeder.catalogues.gCat
-

Class GCatController

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • org.gcube.data.publishing.gCataFeeder.catalogues.gCat.GCatController
    • -
    -
  • -
-
-
    -
  • -
    -
    All Implemented Interfaces:
    -
    org.gcube.data.publishing.gCatFeeder.catalogues.CatalogueController
    -
    -
    -
    -
    public class GCatController
    -extends Object
    -implements org.gcube.data.publishing.gCatFeeder.catalogues.CatalogueController
    -
  • -
-
-
-
    -
  • - -
      -
    • - - -

      Constructor Summary

      - - - - - - - - -
      Constructors 
      Constructor and Description
      GCatController(org.gcube.data.publishing.gCatFeeder.model.CatalogueInstanceDescriptor instance) 
      -
    • -
    - -
      -
    • - - -

      Method Summary

      - - - - - - - - - - - - - - -
      All Methods Instance Methods Concrete Methods 
      Modifier and TypeMethod and Description
      voidconfigure(org.gcube.data.publishing.gCatFeeder.model.ControllerConfiguration config) 
      org.gcube.data.publishing.gCatFeeder.catalogues.model.PublishReportpublishItem(org.gcube.data.publishing.gCatFeeder.model.CatalogueFormatData arg0) -
      Expected structure - - { - "profile" : "", - "item" : "", - "resources" : [ - "", - "", - ....] - } - - NB serialized resources are updated with "package_id" set as the published item id
      -
      - -
    • -
    -
  • -
-
-
-
    -
  • - -
      -
    • - - -

      Constructor Detail

      - - - -
        -
      • -

        GCatController

        -
        public GCatController(org.gcube.data.publishing.gCatFeeder.model.CatalogueInstanceDescriptor instance)
        -               throws org.gcube.data.publishing.gCatFeeder.catalogues.model.faults.ControllerInstantiationFault
        -
        -
        Throws:
        -
        org.gcube.data.publishing.gCatFeeder.catalogues.model.faults.ControllerInstantiationFault
        -
        -
      • -
      -
    • -
    - -
      -
    • - - -

      Method Detail

      - - - -
        -
      • -

        configure

        -
        public void configure(org.gcube.data.publishing.gCatFeeder.model.ControllerConfiguration config)
        -
        -
        Specified by:
        -
        configure in interface org.gcube.data.publishing.gCatFeeder.catalogues.CatalogueController
        -
        -
      • -
      - - - -
        -
      • -

        publishItem

        -
        public org.gcube.data.publishing.gCatFeeder.catalogues.model.PublishReport publishItem(org.gcube.data.publishing.gCatFeeder.model.CatalogueFormatData arg0)
        -                                                                                throws org.gcube.data.publishing.gCatFeeder.catalogues.model.faults.WrongObjectFormatException,
        -                                                                                       org.gcube.data.publishing.gCatFeeder.catalogues.model.faults.CatalogueInteractionException,
        -                                                                                       org.gcube.data.publishing.gCatFeeder.catalogues.model.faults.PublicationException,
        -                                                                                       org.gcube.data.publishing.gCatFeeder.model.InternalConversionException
        -
        Expected structure - - { - "profile" : "", - "item" : "", - "resources" : [ - "", - "", - ....] - } - - NB serialized resources are updated with "package_id" set as the published item id
        -
        -
        Specified by:
        -
        publishItem in interface org.gcube.data.publishing.gCatFeeder.catalogues.CatalogueController
        -
        Throws:
        -
        org.gcube.data.publishing.gCatFeeder.model.InternalConversionException
        -
        org.gcube.data.publishing.gCatFeeder.catalogues.model.faults.WrongObjectFormatException
        -
        org.gcube.data.publishing.gCatFeeder.catalogues.model.faults.CatalogueInteractionException
        -
        org.gcube.data.publishing.gCatFeeder.catalogues.model.faults.PublicationException
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - -

Copyright © 2019. All Rights Reserved.

- - diff --git a/gCat-Controller/target/apidocs/org/gcube/data/publishing/gCataFeeder/catalogues/gCat/GCatPlugin.html b/gCat-Controller/target/apidocs/org/gcube/data/publishing/gCataFeeder/catalogues/gCat/GCatPlugin.html deleted file mode 100644 index 3c4c31f..0000000 --- a/gCat-Controller/target/apidocs/org/gcube/data/publishing/gCataFeeder/catalogues/gCat/GCatPlugin.html +++ /dev/null @@ -1,357 +0,0 @@ - - - - - - -GCatPlugin (gCat Controller 1.0.0-SNAPSHOT API) - - - - - - - - - - - - -
-
org.gcube.data.publishing.gCataFeeder.catalogues.gCat
-

Class GCatPlugin

-
-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • org.gcube.data.publishing.gCataFeeder.catalogues.gCat.GCatPlugin
    • -
    -
  • -
-
-
    -
  • -
    -
    All Implemented Interfaces:
    -
    org.gcube.data.publishing.gCatFeeder.catalogues.CataloguePlugin
    -
    -
    -
    -
    public class GCatPlugin
    -extends Object
    -implements org.gcube.data.publishing.gCatFeeder.catalogues.CataloguePlugin
    -
  • -
-
-
- -
-
-
    -
  • - -
      -
    • - - -

      Constructor Detail

      - - - -
        -
      • -

        GCatPlugin

        -
        public GCatPlugin()
        -
      • -
      -
    • -
    - -
      -
    • - - -

      Method Detail

      - - - -
        -
      • -

        getDescriptor

        -
        public org.gcube.data.publishing.gCatFeeder.catalogues.model.CataloguePluginDescriptor getDescriptor()
        -
        -
        Specified by:
        -
        getDescriptor in interface org.gcube.data.publishing.gCatFeeder.catalogues.CataloguePlugin
        -
        -
      • -
      - - - -
        -
      • -

        instantiateController

        -
        public org.gcube.data.publishing.gCatFeeder.catalogues.CatalogueController instantiateController(org.gcube.data.publishing.gCatFeeder.model.CatalogueInstanceDescriptor desc)
        -                                                                                          throws org.gcube.data.publishing.gCatFeeder.catalogues.model.faults.ControllerInstantiationFault
        -
        -
        Specified by:
        -
        instantiateController in interface org.gcube.data.publishing.gCatFeeder.catalogues.CataloguePlugin
        -
        Throws:
        -
        org.gcube.data.publishing.gCatFeeder.catalogues.model.faults.ControllerInstantiationFault
        -
        -
      • -
      - - - -
        -
      • -

        init

        -
        public void init()
        -          throws Exception
        -
        -
        Specified by:
        -
        init in interface org.gcube.data.publishing.gCatFeeder.catalogues.CataloguePlugin
        -
        Throws:
        -
        Exception
        -
        -
      • -
      - - - -
        -
      • -

        initInScope

        -
        public void initInScope()
        -                 throws Exception
        -
        -
        Specified by:
        -
        initInScope in interface org.gcube.data.publishing.gCatFeeder.catalogues.CataloguePlugin
        -
        Throws:
        -
        Exception
        -
        -
      • -
      - - - -
        -
      • -

        setEnvironmentConfiguration

        -
        public void setEnvironmentConfiguration(org.gcube.data.publishing.gCatFeeder.model.EnvironmentConfiguration env)
        -
        -
        Specified by:
        -
        setEnvironmentConfiguration in interface org.gcube.data.publishing.gCatFeeder.catalogues.CataloguePlugin
        -
        -
      • -
      -
    • -
    -
  • -
-
-
- - - - - -

Copyright © 2019. All Rights Reserved.

- - diff --git a/gCat-Controller/target/apidocs/org/gcube/data/publishing/gCataFeeder/catalogues/gCat/class-use/GCatController.html b/gCat-Controller/target/apidocs/org/gcube/data/publishing/gCataFeeder/catalogues/gCat/class-use/GCatController.html deleted file mode 100644 index e8873db..0000000 --- a/gCat-Controller/target/apidocs/org/gcube/data/publishing/gCataFeeder/catalogues/gCat/class-use/GCatController.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - -Uses of Class org.gcube.data.publishing.gCataFeeder.catalogues.gCat.GCatController (gCat Controller 1.0.0-SNAPSHOT API) - - - - - - - - - - - -
-

Uses of Class
org.gcube.data.publishing.gCataFeeder.catalogues.gCat.GCatController

-
-
No usage of org.gcube.data.publishing.gCataFeeder.catalogues.gCat.GCatController
- - - - -

Copyright © 2019. All Rights Reserved.

- - diff --git a/gCat-Controller/target/apidocs/org/gcube/data/publishing/gCataFeeder/catalogues/gCat/class-use/GCatPlugin.html b/gCat-Controller/target/apidocs/org/gcube/data/publishing/gCataFeeder/catalogues/gCat/class-use/GCatPlugin.html deleted file mode 100644 index ea724e1..0000000 --- a/gCat-Controller/target/apidocs/org/gcube/data/publishing/gCataFeeder/catalogues/gCat/class-use/GCatPlugin.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - -Uses of Class org.gcube.data.publishing.gCataFeeder.catalogues.gCat.GCatPlugin (gCat Controller 1.0.0-SNAPSHOT API) - - - - - - - - - - - -
-

Uses of Class
org.gcube.data.publishing.gCataFeeder.catalogues.gCat.GCatPlugin

-
-
No usage of org.gcube.data.publishing.gCataFeeder.catalogues.gCat.GCatPlugin
- - - - -

Copyright © 2019. All Rights Reserved.

- - diff --git a/gCat-Controller/target/apidocs/org/gcube/data/publishing/gCataFeeder/catalogues/gCat/package-frame.html b/gCat-Controller/target/apidocs/org/gcube/data/publishing/gCataFeeder/catalogues/gCat/package-frame.html deleted file mode 100644 index 5308d93..0000000 --- a/gCat-Controller/target/apidocs/org/gcube/data/publishing/gCataFeeder/catalogues/gCat/package-frame.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - -org.gcube.data.publishing.gCataFeeder.catalogues.gCat (gCat Controller 1.0.0-SNAPSHOT API) - - - - - -

org.gcube.data.publishing.gCataFeeder.catalogues.gCat

-
-

Classes

- -
- - diff --git a/gCat-Controller/target/apidocs/org/gcube/data/publishing/gCataFeeder/catalogues/gCat/package-summary.html b/gCat-Controller/target/apidocs/org/gcube/data/publishing/gCataFeeder/catalogues/gCat/package-summary.html deleted file mode 100644 index db8937a..0000000 --- a/gCat-Controller/target/apidocs/org/gcube/data/publishing/gCataFeeder/catalogues/gCat/package-summary.html +++ /dev/null @@ -1,146 +0,0 @@ - - - - - - -org.gcube.data.publishing.gCataFeeder.catalogues.gCat (gCat Controller 1.0.0-SNAPSHOT API) - - - - - - - - - - - -
-

Package org.gcube.data.publishing.gCataFeeder.catalogues.gCat

-
-
- -
- - - - -

Copyright © 2019. All Rights Reserved.

- - diff --git a/gCat-Controller/target/apidocs/org/gcube/data/publishing/gCataFeeder/catalogues/gCat/package-tree.html b/gCat-Controller/target/apidocs/org/gcube/data/publishing/gCataFeeder/catalogues/gCat/package-tree.html deleted file mode 100644 index 20f588a..0000000 --- a/gCat-Controller/target/apidocs/org/gcube/data/publishing/gCataFeeder/catalogues/gCat/package-tree.html +++ /dev/null @@ -1,134 +0,0 @@ - - - - - - -org.gcube.data.publishing.gCataFeeder.catalogues.gCat Class Hierarchy (gCat Controller 1.0.0-SNAPSHOT API) - - - - - - - - - - - -
-

Hierarchy For Package org.gcube.data.publishing.gCataFeeder.catalogues.gCat

-
-
-

Class Hierarchy

-
    -
  • java.lang.Object -
      -
    • org.gcube.data.publishing.gCataFeeder.catalogues.gCat.GCatController (implements org.gcube.data.publishing.gCatFeeder.catalogues.CatalogueController)
    • -
    • org.gcube.data.publishing.gCataFeeder.catalogues.gCat.GCatPlugin (implements org.gcube.data.publishing.gCatFeeder.catalogues.CataloguePlugin)
    • -
    -
  • -
-
- - - - -

Copyright © 2019. All Rights Reserved.

- - diff --git a/gCat-Controller/target/apidocs/org/gcube/data/publishing/gCataFeeder/catalogues/gCat/package-use.html b/gCat-Controller/target/apidocs/org/gcube/data/publishing/gCataFeeder/catalogues/gCat/package-use.html deleted file mode 100644 index 69837e5..0000000 --- a/gCat-Controller/target/apidocs/org/gcube/data/publishing/gCataFeeder/catalogues/gCat/package-use.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - -Uses of Package org.gcube.data.publishing.gCataFeeder.catalogues.gCat (gCat Controller 1.0.0-SNAPSHOT API) - - - - - - - - - - - -
-

Uses of Package
org.gcube.data.publishing.gCataFeeder.catalogues.gCat

-
-
No usage of org.gcube.data.publishing.gCataFeeder.catalogues.gCat
- - - - -

Copyright © 2019. All Rights Reserved.

- - diff --git a/gCat-Controller/target/apidocs/overview-tree.html b/gCat-Controller/target/apidocs/overview-tree.html deleted file mode 100644 index 2f6273e..0000000 --- a/gCat-Controller/target/apidocs/overview-tree.html +++ /dev/null @@ -1,138 +0,0 @@ - - - - - - -Class Hierarchy (gCat Controller 1.0.0-SNAPSHOT API) - - - - - - - - - - - -
-

Hierarchy For All Packages

-Package Hierarchies: - -
-
-

Class Hierarchy

-
    -
  • java.lang.Object -
      -
    • org.gcube.data.publishing.gCataFeeder.catalogues.gCat.GCatController (implements org.gcube.data.publishing.gCatFeeder.catalogues.CatalogueController)
    • -
    • org.gcube.data.publishing.gCataFeeder.catalogues.gCat.GCatPlugin (implements org.gcube.data.publishing.gCatFeeder.catalogues.CataloguePlugin)
    • -
    -
  • -
-
- - - - -

Copyright © 2019. All Rights Reserved.

- - diff --git a/gCat-Controller/target/apidocs/package-list b/gCat-Controller/target/apidocs/package-list deleted file mode 100644 index fd72f7d..0000000 --- a/gCat-Controller/target/apidocs/package-list +++ /dev/null @@ -1 +0,0 @@ -org.gcube.data.publishing.gCataFeeder.catalogues.gCat diff --git a/gCat-Controller/target/apidocs/script.js b/gCat-Controller/target/apidocs/script.js deleted file mode 100644 index b346356..0000000 --- a/gCat-Controller/target/apidocs/script.js +++ /dev/null @@ -1,30 +0,0 @@ -function show(type) -{ - count = 0; - for (var key in methods) { - var row = document.getElementById(key); - if ((methods[key] & type) != 0) { - row.style.display = ''; - row.className = (count++ % 2) ? rowColor : altColor; - } - else - row.style.display = 'none'; - } - updateTabs(type); -} - -function updateTabs(type) -{ - for (var value in tabs) { - var sNode = document.getElementById(tabs[value][0]); - var spanNode = sNode.firstChild; - if (value == type) { - sNode.className = activeTableTab; - spanNode.innerHTML = tabs[value][1]; - } - else { - sNode.className = tableTab; - spanNode.innerHTML = "" + tabs[value][1] + ""; - } - } -} diff --git a/gCat-Controller/target/apidocs/stylesheet.css b/gCat-Controller/target/apidocs/stylesheet.css deleted file mode 100644 index 98055b2..0000000 --- a/gCat-Controller/target/apidocs/stylesheet.css +++ /dev/null @@ -1,574 +0,0 @@ -/* Javadoc style sheet */ -/* -Overall document style -*/ - -@import url('resources/fonts/dejavu.css'); - -body { - background-color:#ffffff; - color:#353833; - font-family:'DejaVu Sans', Arial, Helvetica, sans-serif; - font-size:14px; - margin:0; -} -a:link, a:visited { - text-decoration:none; - color:#4A6782; -} -a:hover, a:focus { - text-decoration:none; - color:#bb7a2a; -} -a:active { - text-decoration:none; - color:#4A6782; -} -a[name] { - color:#353833; -} -a[name]:hover { - text-decoration:none; - color:#353833; -} -pre { - font-family:'DejaVu Sans Mono', monospace; - font-size:14px; -} -h1 { - font-size:20px; -} -h2 { - font-size:18px; -} -h3 { - font-size:16px; - font-style:italic; -} -h4 { - font-size:13px; -} -h5 { - font-size:12px; -} -h6 { - font-size:11px; -} -ul { - list-style-type:disc; -} -code, tt { - font-family:'DejaVu Sans Mono', monospace; - font-size:14px; - padding-top:4px; - margin-top:8px; - line-height:1.4em; -} -dt code { - font-family:'DejaVu Sans Mono', monospace; - font-size:14px; - padding-top:4px; -} -table tr td dt code { - font-family:'DejaVu Sans Mono', monospace; - font-size:14px; - vertical-align:top; - padding-top:4px; -} -sup { - font-size:8px; -} -/* -Document title and Copyright styles -*/ -.clear { - clear:both; - height:0px; - overflow:hidden; -} -.aboutLanguage { - float:right; - padding:0px 21px; - font-size:11px; - z-index:200; - margin-top:-9px; -} -.legalCopy { - margin-left:.5em; -} -.bar a, .bar a:link, .bar a:visited, .bar a:active { - color:#FFFFFF; - text-decoration:none; -} -.bar a:hover, .bar a:focus { - color:#bb7a2a; -} -.tab { - background-color:#0066FF; - color:#ffffff; - padding:8px; - width:5em; - font-weight:bold; -} -/* -Navigation bar styles -*/ -.bar { - background-color:#4D7A97; - color:#FFFFFF; - padding:.8em .5em .4em .8em; - height:auto;/*height:1.8em;*/ - font-size:11px; - margin:0; -} -.topNav { - background-color:#4D7A97; - color:#FFFFFF; - float:left; - padding:0; - width:100%; - clear:right; - height:2.8em; - padding-top:10px; - overflow:hidden; - font-size:12px; -} -.bottomNav { - margin-top:10px; - background-color:#4D7A97; - color:#FFFFFF; - float:left; - padding:0; - width:100%; - clear:right; - height:2.8em; - padding-top:10px; - overflow:hidden; - font-size:12px; -} -.subNav { - background-color:#dee3e9; - float:left; - width:100%; - overflow:hidden; - font-size:12px; -} -.subNav div { - clear:left; - float:left; - padding:0 0 5px 6px; - text-transform:uppercase; -} -ul.navList, ul.subNavList { - float:left; - margin:0 25px 0 0; - padding:0; -} -ul.navList li{ - list-style:none; - float:left; - padding: 5px 6px; - text-transform:uppercase; -} -ul.subNavList li{ - list-style:none; - float:left; -} -.topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited { - color:#FFFFFF; - text-decoration:none; - text-transform:uppercase; -} -.topNav a:hover, .bottomNav a:hover { - text-decoration:none; - color:#bb7a2a; - text-transform:uppercase; -} -.navBarCell1Rev { - background-color:#F8981D; - color:#253441; - margin: auto 5px; -} -.skipNav { - position:absolute; - top:auto; - left:-9999px; - overflow:hidden; -} -/* -Page header and footer styles -*/ -.header, .footer { - clear:both; - margin:0 20px; - padding:5px 0 0 0; -} -.indexHeader { - margin:10px; - position:relative; -} -.indexHeader span{ - margin-right:15px; -} -.indexHeader h1 { - font-size:13px; -} -.title { - color:#2c4557; - margin:10px 0; -} -.subTitle { - margin:5px 0 0 0; -} -.header ul { - margin:0 0 15px 0; - padding:0; -} -.footer ul { - margin:20px 0 5px 0; -} -.header ul li, .footer ul li { - list-style:none; - font-size:13px; -} -/* -Heading styles -*/ -div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 { - background-color:#dee3e9; - border:1px solid #d0d9e0; - margin:0 0 6px -8px; - padding:7px 5px; -} -ul.blockList ul.blockList ul.blockList li.blockList h3 { - background-color:#dee3e9; - border:1px solid #d0d9e0; - margin:0 0 6px -8px; - padding:7px 5px; -} -ul.blockList ul.blockList li.blockList h3 { - padding:0; - margin:15px 0; -} -ul.blockList li.blockList h2 { - padding:0px 0 20px 0; -} -/* -Page layout container styles -*/ -.contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer { - clear:both; - padding:10px 20px; - position:relative; -} -.indexContainer { - margin:10px; - position:relative; - font-size:12px; -} -.indexContainer h2 { - font-size:13px; - padding:0 0 3px 0; -} -.indexContainer ul { - margin:0; - padding:0; -} -.indexContainer ul li { - list-style:none; - padding-top:2px; -} -.contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt { - font-size:12px; - font-weight:bold; - margin:10px 0 0 0; - color:#4E4E4E; -} -.contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd { - margin:5px 0 10px 0px; - font-size:14px; - font-family:'DejaVu Sans Mono',monospace; -} -.serializedFormContainer dl.nameValue dt { - margin-left:1px; - font-size:1.1em; - display:inline; - font-weight:bold; -} -.serializedFormContainer dl.nameValue dd { - margin:0 0 0 1px; - font-size:1.1em; - display:inline; -} -/* -List styles -*/ -ul.horizontal li { - display:inline; - font-size:0.9em; -} -ul.inheritance { - margin:0; - padding:0; -} -ul.inheritance li { - display:inline; - list-style:none; -} -ul.inheritance li ul.inheritance { - margin-left:15px; - padding-left:15px; - padding-top:1px; -} -ul.blockList, ul.blockListLast { - margin:10px 0 10px 0; - padding:0; -} -ul.blockList li.blockList, ul.blockListLast li.blockList { - list-style:none; - margin-bottom:15px; - line-height:1.4; -} -ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList { - padding:0px 20px 5px 10px; - border:1px solid #ededed; - background-color:#f8f8f8; -} -ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList { - padding:0 0 5px 8px; - background-color:#ffffff; - border:none; -} -ul.blockList ul.blockList ul.blockList ul.blockList li.blockList { - margin-left:0; - padding-left:0; - padding-bottom:15px; - border:none; -} -ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast { - list-style:none; - border-bottom:none; - padding-bottom:0; -} -table tr td dl, table tr td dl dt, table tr td dl dd { - margin-top:0; - margin-bottom:1px; -} -/* -Table styles -*/ -.overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary { - width:100%; - border-left:1px solid #EEE; - border-right:1px solid #EEE; - border-bottom:1px solid #EEE; -} -.overviewSummary, .memberSummary { - padding:0px; -} -.overviewSummary caption, .memberSummary caption, .typeSummary caption, -.useSummary caption, .constantsSummary caption, .deprecatedSummary caption { - position:relative; - text-align:left; - background-repeat:no-repeat; - color:#253441; - font-weight:bold; - clear:none; - overflow:hidden; - padding:0px; - padding-top:10px; - padding-left:1px; - margin:0px; - white-space:pre; -} -.overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link, -.useSummary caption a:link, .constantsSummary caption a:link, .deprecatedSummary caption a:link, -.overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover, -.useSummary caption a:hover, .constantsSummary caption a:hover, .deprecatedSummary caption a:hover, -.overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active, -.useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active, -.overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited, -.useSummary caption a:visited, .constantsSummary caption a:visited, .deprecatedSummary caption a:visited { - color:#FFFFFF; -} -.overviewSummary caption span, .memberSummary caption span, .typeSummary caption span, -.useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span { - white-space:nowrap; - padding-top:5px; - padding-left:12px; - padding-right:12px; - padding-bottom:7px; - display:inline-block; - float:left; - background-color:#F8981D; - border: none; - height:16px; -} -.memberSummary caption span.activeTableTab span { - white-space:nowrap; - padding-top:5px; - padding-left:12px; - padding-right:12px; - margin-right:3px; - display:inline-block; - float:left; - background-color:#F8981D; - height:16px; -} -.memberSummary caption span.tableTab span { - white-space:nowrap; - padding-top:5px; - padding-left:12px; - padding-right:12px; - margin-right:3px; - display:inline-block; - float:left; - background-color:#4D7A97; - height:16px; -} -.memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab { - padding-top:0px; - padding-left:0px; - padding-right:0px; - background-image:none; - float:none; - display:inline; -} -.overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd, -.useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd { - display:none; - width:5px; - position:relative; - float:left; - background-color:#F8981D; -} -.memberSummary .activeTableTab .tabEnd { - display:none; - width:5px; - margin-right:3px; - position:relative; - float:left; - background-color:#F8981D; -} -.memberSummary .tableTab .tabEnd { - display:none; - width:5px; - margin-right:3px; - position:relative; - background-color:#4D7A97; - float:left; - -} -.overviewSummary td, .memberSummary td, .typeSummary td, -.useSummary td, .constantsSummary td, .deprecatedSummary td { - text-align:left; - padding:0px 0px 12px 10px; -} -th.colOne, th.colFirst, th.colLast, .useSummary th, .constantsSummary th, -td.colOne, td.colFirst, td.colLast, .useSummary td, .constantsSummary td{ - vertical-align:top; - padding-right:0px; - padding-top:8px; - padding-bottom:3px; -} -th.colFirst, th.colLast, th.colOne, .constantsSummary th { - background:#dee3e9; - text-align:left; - padding:8px 3px 3px 7px; -} -td.colFirst, th.colFirst { - white-space:nowrap; - font-size:13px; -} -td.colLast, th.colLast { - font-size:13px; -} -td.colOne, th.colOne { - font-size:13px; -} -.overviewSummary td.colFirst, .overviewSummary th.colFirst, -.useSummary td.colFirst, .useSummary th.colFirst, -.overviewSummary td.colOne, .overviewSummary th.colOne, -.memberSummary td.colFirst, .memberSummary th.colFirst, -.memberSummary td.colOne, .memberSummary th.colOne, -.typeSummary td.colFirst{ - width:25%; - vertical-align:top; -} -td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover { - font-weight:bold; -} -.tableSubHeadingColor { - background-color:#EEEEFF; -} -.altColor { - background-color:#FFFFFF; -} -.rowColor { - background-color:#EEEEEF; -} -/* -Content styles -*/ -.description pre { - margin-top:0; -} -.deprecatedContent { - margin:0; - padding:10px 0; -} -.docSummary { - padding:0; -} - -ul.blockList ul.blockList ul.blockList li.blockList h3 { - font-style:normal; -} - -div.block { - font-size:14px; - font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; -} - -td.colLast div { - padding-top:0px; -} - - -td.colLast a { - padding-bottom:3px; -} -/* -Formatting effect styles -*/ -.sourceLineNo { - color:green; - padding:0 30px 0 0; -} -h1.hidden { - visibility:hidden; - overflow:hidden; - font-size:10px; -} -.block { - display:block; - margin:3px 10px 2px 0px; - color:#474747; -} -.deprecatedLabel, .descfrmTypeLabel, .memberNameLabel, .memberNameLink, -.overrideSpecifyLabel, .packageHierarchyLabel, .paramLabel, .returnLabel, -.seeLabel, .simpleTagLabel, .throwsLabel, .typeNameLabel, .typeNameLink { - font-weight:bold; -} -.deprecationComment, .emphasizedPhrase, .interfaceName { - font-style:italic; -} - -div.block div.block span.deprecationComment, div.block div.block span.emphasizedPhrase, -div.block div.block span.interfaceName { - font-style:normal; -} - -div.contentContainer ul.blockList li.blockList h2{ - padding-bottom:0px; -} diff --git a/gCat-Controller/target/classes/META-INF/maven/org.gcube.data-publishing.gCat-Feeder/gCat-Controller/pom.properties b/gCat-Controller/target/classes/META-INF/maven/org.gcube.data-publishing.gCat-Feeder/gCat-Controller/pom.properties index add1c39..0f9ba74 100644 --- a/gCat-Controller/target/classes/META-INF/maven/org.gcube.data-publishing.gCat-Feeder/gCat-Controller/pom.properties +++ b/gCat-Controller/target/classes/META-INF/maven/org.gcube.data-publishing.gCat-Feeder/gCat-Controller/pom.properties @@ -1,5 +1,5 @@ #Generated by Maven Integration for Eclipse -#Tue Apr 02 19:31:46 CEST 2019 +#Wed Apr 03 15:58:23 CEST 2019 version=1.0.0-SNAPSHOT groupId=org.gcube.data-publishing.gCat-Feeder m2e.projectName=gCat-Controller diff --git a/gCat-Controller/target/classes/org/gcube/data/publishing/gCataFeeder/catalogues/gCat/GCatController.class b/gCat-Controller/target/classes/org/gcube/data/publishing/gCataFeeder/catalogues/gCat/GCatController.class index 9c981d7..86f3a11 100644 Binary files a/gCat-Controller/target/classes/org/gcube/data/publishing/gCataFeeder/catalogues/gCat/GCatController.class and b/gCat-Controller/target/classes/org/gcube/data/publishing/gCataFeeder/catalogues/gCat/GCatController.class differ diff --git a/gCat-Controller/target/gCat-Controller-1.0.0-SNAPSHOT-javadoc.jar b/gCat-Controller/target/gCat-Controller-1.0.0-SNAPSHOT-javadoc.jar deleted file mode 100644 index 84f0d52..0000000 Binary files a/gCat-Controller/target/gCat-Controller-1.0.0-SNAPSHOT-javadoc.jar and /dev/null differ diff --git a/gCat-Controller/target/gCat-Controller-1.0.0-SNAPSHOT-sources.jar b/gCat-Controller/target/gCat-Controller-1.0.0-SNAPSHOT-sources.jar deleted file mode 100644 index 6e649f6..0000000 Binary files a/gCat-Controller/target/gCat-Controller-1.0.0-SNAPSHOT-sources.jar and /dev/null differ diff --git a/gCat-Controller/target/gCat-Controller-1.0.0-SNAPSHOT.jar b/gCat-Controller/target/gCat-Controller-1.0.0-SNAPSHOT.jar deleted file mode 100644 index 9408b21..0000000 Binary files a/gCat-Controller/target/gCat-Controller-1.0.0-SNAPSHOT.jar and /dev/null differ diff --git a/gCat-Controller/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml b/gCat-Controller/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml deleted file mode 100644 index 8b89c97..0000000 --- a/gCat-Controller/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - src/main/javadoc - diff --git a/gCat-Controller/target/javadoc-bundle-options/package-list b/gCat-Controller/target/javadoc-bundle-options/package-list deleted file mode 100644 index 42c9b95..0000000 --- a/gCat-Controller/target/javadoc-bundle-options/package-list +++ /dev/null @@ -1,203 +0,0 @@ -java.applet -java.awt -java.awt.color -java.awt.datatransfer -java.awt.dnd -java.awt.event -java.awt.font -java.awt.geom -java.awt.im -java.awt.im.spi -java.awt.image -java.awt.image.renderable -java.awt.print -java.beans -java.beans.beancontext -java.io -java.lang -java.lang.annotation -java.lang.instrument -java.lang.management -java.lang.ref -java.lang.reflect -java.math -java.net -java.nio -java.nio.channels -java.nio.channels.spi -java.nio.charset -java.nio.charset.spi -java.rmi -java.rmi.activation -java.rmi.dgc -java.rmi.registry -java.rmi.server -java.security -java.security.acl -java.security.cert -java.security.interfaces -java.security.spec -java.sql -java.text -java.text.spi -java.util -java.util.concurrent -java.util.concurrent.atomic -java.util.concurrent.locks -java.util.jar -java.util.logging -java.util.prefs -java.util.regex -java.util.spi -java.util.zip -javax.accessibility -javax.activation -javax.activity -javax.annotation -javax.annotation.processing -javax.crypto -javax.crypto.interfaces -javax.crypto.spec -javax.imageio -javax.imageio.event -javax.imageio.metadata -javax.imageio.plugins.bmp -javax.imageio.plugins.jpeg -javax.imageio.spi -javax.imageio.stream -javax.jws -javax.jws.soap -javax.lang.model -javax.lang.model.element -javax.lang.model.type -javax.lang.model.util -javax.management -javax.management.loading -javax.management.modelmbean -javax.management.monitor -javax.management.openmbean -javax.management.relation -javax.management.remote -javax.management.remote.rmi -javax.management.timer -javax.naming -javax.naming.directory -javax.naming.event -javax.naming.ldap -javax.naming.spi -javax.net -javax.net.ssl -javax.print -javax.print.attribute -javax.print.attribute.standard -javax.print.event -javax.rmi -javax.rmi.CORBA -javax.rmi.ssl -javax.script -javax.security.auth -javax.security.auth.callback -javax.security.auth.kerberos -javax.security.auth.login -javax.security.auth.spi -javax.security.auth.x500 -javax.security.cert -javax.security.sasl -javax.sound.midi -javax.sound.midi.spi -javax.sound.sampled -javax.sound.sampled.spi -javax.sql -javax.sql.rowset -javax.sql.rowset.serial -javax.sql.rowset.spi -javax.swing -javax.swing.border -javax.swing.colorchooser -javax.swing.event -javax.swing.filechooser -javax.swing.plaf -javax.swing.plaf.basic -javax.swing.plaf.metal -javax.swing.plaf.multi -javax.swing.plaf.synth -javax.swing.table -javax.swing.text -javax.swing.text.html -javax.swing.text.html.parser -javax.swing.text.rtf -javax.swing.tree -javax.swing.undo -javax.tools -javax.transaction -javax.transaction.xa -javax.xml -javax.xml.bind -javax.xml.bind.annotation -javax.xml.bind.annotation.adapters -javax.xml.bind.attachment -javax.xml.bind.helpers -javax.xml.bind.util -javax.xml.crypto -javax.xml.crypto.dom -javax.xml.crypto.dsig -javax.xml.crypto.dsig.dom -javax.xml.crypto.dsig.keyinfo -javax.xml.crypto.dsig.spec -javax.xml.datatype -javax.xml.namespace -javax.xml.parsers -javax.xml.soap -javax.xml.stream -javax.xml.stream.events -javax.xml.stream.util -javax.xml.transform -javax.xml.transform.dom -javax.xml.transform.sax -javax.xml.transform.stax -javax.xml.transform.stream -javax.xml.validation -javax.xml.ws -javax.xml.ws.handler -javax.xml.ws.handler.soap -javax.xml.ws.http -javax.xml.ws.soap -javax.xml.ws.spi -javax.xml.ws.wsaddressing -javax.xml.xpath -org.ietf.jgss -org.omg.CORBA -org.omg.CORBA.DynAnyPackage -org.omg.CORBA.ORBPackage -org.omg.CORBA.TypeCodePackage -org.omg.CORBA.portable -org.omg.CORBA_2_3 -org.omg.CORBA_2_3.portable -org.omg.CosNaming -org.omg.CosNaming.NamingContextExtPackage -org.omg.CosNaming.NamingContextPackage -org.omg.Dynamic -org.omg.DynamicAny -org.omg.DynamicAny.DynAnyFactoryPackage -org.omg.DynamicAny.DynAnyPackage -org.omg.IOP -org.omg.IOP.CodecFactoryPackage -org.omg.IOP.CodecPackage -org.omg.Messaging -org.omg.PortableInterceptor -org.omg.PortableInterceptor.ORBInitInfoPackage -org.omg.PortableServer -org.omg.PortableServer.CurrentPackage -org.omg.PortableServer.POAManagerPackage -org.omg.PortableServer.POAPackage -org.omg.PortableServer.ServantLocatorPackage -org.omg.PortableServer.portable -org.omg.SendingContext -org.omg.stub.java.rmi -org.w3c.dom -org.w3c.dom.bootstrap -org.w3c.dom.events -org.w3c.dom.ls -org.xml.sax -org.xml.sax.ext -org.xml.sax.helpers \ No newline at end of file diff --git a/gCat-Controller/target/maven-archiver/pom.properties b/gCat-Controller/target/maven-archiver/pom.properties deleted file mode 100644 index dc76a7c..0000000 --- a/gCat-Controller/target/maven-archiver/pom.properties +++ /dev/null @@ -1,5 +0,0 @@ -#Generated by Maven -#Tue Apr 02 17:49:45 CEST 2019 -version=1.0.0-SNAPSHOT -groupId=org.gcube.data-publishing.gCat-Feeder -artifactId=gCat-Controller diff --git a/gCat-Controller/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst b/gCat-Controller/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst deleted file mode 100644 index 4593fd9..0000000 --- a/gCat-Controller/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst +++ /dev/null @@ -1 +0,0 @@ -org/gcube/data/publishing/gCataFeeder/catalogues/gCat/GCatController$1.class diff --git a/gCat-Controller/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst b/gCat-Controller/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst deleted file mode 100644 index 881acd7..0000000 --- a/gCat-Controller/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst +++ /dev/null @@ -1,2 +0,0 @@ -/home/fabio/workspaces/DEV/gCat-Feeder-Suite/gCat-Controller/src/main/java/org/gcube/data/publishing/gCataFeeder/catalogues/gCat/GCatPlugin.java -/home/fabio/workspaces/DEV/gCat-Feeder-Suite/gCat-Controller/src/main/java/org/gcube/data/publishing/gCataFeeder/catalogues/gCat/GCatController.java diff --git a/gCat-Controller/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst b/gCat-Controller/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst deleted file mode 100644 index e69de29..0000000 diff --git a/gCat-Controller/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst b/gCat-Controller/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst deleted file mode 100644 index 1fa6da7..0000000 --- a/gCat-Controller/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst +++ /dev/null @@ -1 +0,0 @@ -/home/fabio/workspaces/DEV/gCat-Feeder-Suite/gCat-Controller/src/test/java/org/gcube/data/publishing/gCatFeeder/catalogues/gCat/Interactions.java diff --git a/gCat-Controller/target/test-classes/org/gcube/data/publishing/gCatFeeder/catalogues/gCat/Interactions$CustomTargetFormat.class b/gCat-Controller/target/test-classes/org/gcube/data/publishing/gCatFeeder/catalogues/gCat/Interactions$CustomTargetFormat.class index b8a55b9..3c94c69 100644 Binary files a/gCat-Controller/target/test-classes/org/gcube/data/publishing/gCatFeeder/catalogues/gCat/Interactions$CustomTargetFormat.class and b/gCat-Controller/target/test-classes/org/gcube/data/publishing/gCatFeeder/catalogues/gCat/Interactions$CustomTargetFormat.class differ diff --git a/gCat-Controller/target/test-classes/org/gcube/data/publishing/gCatFeeder/catalogues/gCat/Interactions.class b/gCat-Controller/target/test-classes/org/gcube/data/publishing/gCatFeeder/catalogues/gCat/Interactions.class index 351c626..612c111 100644 Binary files a/gCat-Controller/target/test-classes/org/gcube/data/publishing/gCatFeeder/catalogues/gCat/Interactions.class and b/gCat-Controller/target/test-classes/org/gcube/data/publishing/gCatFeeder/catalogues/gCat/Interactions.class differ diff --git a/gCat-Controller/target/test-classes/empties.json b/gCat-Controller/target/test-classes/org/gcube/data/publishing/gCatFeeder/catalogues/gCat/empties.json similarity index 100% rename from gCat-Controller/target/test-classes/empties.json rename to gCat-Controller/target/test-classes/org/gcube/data/publishing/gCatFeeder/catalogues/gCat/empties.json diff --git a/gCat-Controller/target/test-classes/full-algorithm.json b/gCat-Controller/target/test-classes/org/gcube/data/publishing/gCatFeeder/catalogues/gCat/full-algorithm.json similarity index 100% rename from gCat-Controller/target/test-classes/full-algorithm.json rename to gCat-Controller/target/test-classes/org/gcube/data/publishing/gCatFeeder/catalogues/gCat/full-algorithm.json diff --git a/gCat-Controller/target/test-classes/full.json b/gCat-Controller/target/test-classes/org/gcube/data/publishing/gCatFeeder/catalogues/gCat/full.json similarity index 100% rename from gCat-Controller/target/test-classes/full.json rename to gCat-Controller/target/test-classes/org/gcube/data/publishing/gCatFeeder/catalogues/gCat/full.json diff --git a/gCat-Controller/target/test-classes/missingProfile.json b/gCat-Controller/target/test-classes/org/gcube/data/publishing/gCatFeeder/catalogues/gCat/missingProfile.json similarity index 100% rename from gCat-Controller/target/test-classes/missingProfile.json rename to gCat-Controller/target/test-classes/org/gcube/data/publishing/gCatFeeder/catalogues/gCat/missingProfile.json diff --git a/gCat-Controller/target/test-classes/noItem.json b/gCat-Controller/target/test-classes/org/gcube/data/publishing/gCatFeeder/catalogues/gCat/noItem.json similarity index 100% rename from gCat-Controller/target/test-classes/noItem.json rename to gCat-Controller/target/test-classes/org/gcube/data/publishing/gCatFeeder/catalogues/gCat/noItem.json diff --git a/gCat-Controller/target/test-classes/onlyItem.json b/gCat-Controller/target/test-classes/org/gcube/data/publishing/gCatFeeder/catalogues/gCat/onlyItem.json similarity index 100% rename from gCat-Controller/target/test-classes/onlyItem.json rename to gCat-Controller/target/test-classes/org/gcube/data/publishing/gCatFeeder/catalogues/gCat/onlyItem.json diff --git a/test-commons/target/classes/META-INF/maven/org.gcube.data-publishing.gCat-Feeder/test-commons/pom.properties b/test-commons/target/classes/META-INF/maven/org.gcube.data-publishing.gCat-Feeder/test-commons/pom.properties index 6c54d02..313bd39 100644 --- a/test-commons/target/classes/META-INF/maven/org.gcube.data-publishing.gCat-Feeder/test-commons/pom.properties +++ b/test-commons/target/classes/META-INF/maven/org.gcube.data-publishing.gCat-Feeder/test-commons/pom.properties @@ -1,5 +1,5 @@ #Generated by Maven Integration for Eclipse -#Tue Apr 02 19:31:52 CEST 2019 +#Wed Apr 03 15:55:22 CEST 2019 version=1.0.0-SNAPSHOT groupId=org.gcube.data-publishing.gCat-Feeder m2e.projectName=test-commons