Changed classes signature

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/information-system/resource-registry-api@133112 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Luca Frosini 2016-10-12 12:34:12 +00:00
parent b19903340d
commit a5f78df1eb
23 changed files with 25 additions and 24 deletions

View File

@ -1,6 +1,8 @@
package org.gcube.informationsystem.resourceregistry; package org.gcube.informationsystem.resourceregistry;
/**
* @author Luca Frosini (ISTI - CNR)
*/
public class Constants { public class Constants {
public static final String SERVICE_CLASS = "InformationSystem"; public static final String SERVICE_CLASS = "InformationSystem";

View File

@ -9,8 +9,7 @@ import org.gcube.informationsystem.resourceregistry.api.exceptions.context.Conte
import org.gcube.informationsystem.resourceregistry.api.exceptions.context.ContextNotFoundException; import org.gcube.informationsystem.resourceregistry.api.exceptions.context.ContextNotFoundException;
/** /**
* @author Luca Frosini (ISTI - CNR) http://www.lucafrosini.com/ * @author Luca Frosini (ISTI - CNR)
*
*/ */
public interface ContextManagement { public interface ContextManagement {

View File

@ -9,7 +9,7 @@ import org.gcube.informationsystem.resourceregistry.api.exceptions.entity.FacetN
import org.gcube.informationsystem.resourceregistry.api.exceptions.entity.ResourceNotFoundException; import org.gcube.informationsystem.resourceregistry.api.exceptions.entity.ResourceNotFoundException;
/** /**
* @author Luca Frosini (ISTI - CNR) http://www.lucafrosini.com/ * @author Luca Frosini (ISTI - CNR)
* *
*/ */
public interface EntityManagement { public interface EntityManagement {

View File

@ -6,7 +6,7 @@ package org.gcube.informationsystem.resourceregistry.api;
import org.gcube.informationsystem.resourceregistry.api.exceptions.InvalidQueryException; import org.gcube.informationsystem.resourceregistry.api.exceptions.InvalidQueryException;
/** /**
* @author Luca Frosini (ISTI - CNR) http://www.lucafrosini.com/ * @author Luca Frosini (ISTI - CNR)
* *
*/ */
public interface Query { public interface Query {

View File

@ -7,7 +7,7 @@ import org.gcube.informationsystem.resourceregistry.api.exceptions.schema.Schema
/** /**
* Service Endpoint Interface * Service Endpoint Interface
* @author Luca Frosini (ISTI - CNR) http://www.lucafrosini.com/ * @author Luca Frosini (ISTI - CNR)
* *
* For JSON schema see * For JSON schema see
* http://orientdb.com/docs/last/OrientDB-REST.html#class * http://orientdb.com/docs/last/OrientDB-REST.html#class

View File

@ -3,7 +3,7 @@ package org.gcube.informationsystem.resourceregistry.api.exceptions;
import org.gcube.informationsystem.resourceregistry.api.exceptions.ResourceRegistryException; import org.gcube.informationsystem.resourceregistry.api.exceptions.ResourceRegistryException;
/** /**
* @author Luca Frosini (ISTI - CNR) http://www.lucafrosini.com/ * @author Luca Frosini (ISTI - CNR)
* *
*/ */
public class InternalException extends ResourceRegistryException { public class InternalException extends ResourceRegistryException {

View File

@ -2,7 +2,7 @@ package org.gcube.informationsystem.resourceregistry.api.exceptions;
/** /**
* @author Luca Frosini (ISTI - CNR) http://www.lucafrosini.com/ * @author Luca Frosini (ISTI - CNR)
* *
*/ */
public class InvalidQueryException extends ResourceRegistryException { public class InvalidQueryException extends ResourceRegistryException {

View File

@ -1,7 +1,7 @@
package org.gcube.informationsystem.resourceregistry.api.exceptions; package org.gcube.informationsystem.resourceregistry.api.exceptions;
/** /**
* @author Luca Frosini (ISTI - CNR) http://www.lucafrosini.com/ * @author Luca Frosini (ISTI - CNR)
* *
*/ */
public interface NotAllowedException { public interface NotAllowedException {

View File

@ -1,7 +1,7 @@
package org.gcube.informationsystem.resourceregistry.api.exceptions; package org.gcube.informationsystem.resourceregistry.api.exceptions;
/** /**
* @author Luca Frosini (ISTI - CNR) http://www.lucafrosini.com/ * @author Luca Frosini (ISTI - CNR)
* *
*/ */
public interface ObjectNotFound { public interface ObjectNotFound {

View File

@ -4,7 +4,7 @@
package org.gcube.informationsystem.resourceregistry.api.exceptions; package org.gcube.informationsystem.resourceregistry.api.exceptions;
/** /**
* @author Luca Frosini (ISTI - CNR) http://www.lucafrosini.com/ * @author Luca Frosini (ISTI - CNR)
* *
*/ */
public class ResourceRegistryException extends Exception { public class ResourceRegistryException extends Exception {

View File

@ -4,7 +4,7 @@
package org.gcube.informationsystem.resourceregistry.api.exceptions.context; package org.gcube.informationsystem.resourceregistry.api.exceptions.context;
/** /**
* @author Luca Frosini (ISTI - CNR) http://www.lucafrosini.com/ * @author Luca Frosini (ISTI - CNR)
*/ */
public class ContextCreationException extends ContextException { public class ContextCreationException extends ContextException {

View File

@ -3,7 +3,7 @@ package org.gcube.informationsystem.resourceregistry.api.exceptions.context;
import org.gcube.informationsystem.resourceregistry.api.exceptions.ResourceRegistryException; import org.gcube.informationsystem.resourceregistry.api.exceptions.ResourceRegistryException;
/** /**
* @author Luca Frosini (ISTI - CNR) http://www.lucafrosini.com/ * @author Luca Frosini (ISTI - CNR)
* *
*/ */
public class ContextException extends ResourceRegistryException { public class ContextException extends ResourceRegistryException {

View File

@ -1,7 +1,7 @@
package org.gcube.informationsystem.resourceregistry.api.exceptions.context; package org.gcube.informationsystem.resourceregistry.api.exceptions.context;
/** /**
* @author Luca Frosini (ISTI - CNR) http://www.lucafrosini.com/ * @author Luca Frosini (ISTI - CNR)
* *
*/ */
public class ContextMoveException extends ContextException { public class ContextMoveException extends ContextException {

View File

@ -3,7 +3,7 @@ package org.gcube.informationsystem.resourceregistry.api.exceptions.context;
import org.gcube.informationsystem.resourceregistry.api.exceptions.ObjectNotFound; import org.gcube.informationsystem.resourceregistry.api.exceptions.ObjectNotFound;
/** /**
* @author Luca Frosini (ISTI - CNR) http://www.lucafrosini.com/ * @author Luca Frosini (ISTI - CNR)
* *
*/ */
public class ContextNotFoundException extends ContextException implements ObjectNotFound { public class ContextNotFoundException extends ContextException implements ObjectNotFound {

View File

@ -3,7 +3,7 @@ package org.gcube.informationsystem.resourceregistry.api.exceptions.entity;
import org.gcube.informationsystem.resourceregistry.api.exceptions.ResourceRegistryException; import org.gcube.informationsystem.resourceregistry.api.exceptions.ResourceRegistryException;
/** /**
* @author Luca Frosini (ISTI - CNR) http://www.lucafrosini.com/ * @author Luca Frosini (ISTI - CNR)
* *
*/ */
public class EntityException extends ResourceRegistryException { public class EntityException extends ResourceRegistryException {

View File

@ -3,7 +3,7 @@ package org.gcube.informationsystem.resourceregistry.api.exceptions.entity;
import org.gcube.informationsystem.resourceregistry.api.exceptions.ObjectNotFound; import org.gcube.informationsystem.resourceregistry.api.exceptions.ObjectNotFound;
/** /**
* @author Luca Frosini (ISTI - CNR) http://www.lucafrosini.com/ * @author Luca Frosini (ISTI - CNR)
* *
*/ */
public class FacetNotFoundException extends EntityException implements ObjectNotFound { public class FacetNotFoundException extends EntityException implements ObjectNotFound {

View File

@ -4,7 +4,7 @@ import org.gcube.informationsystem.resourceregistry.api.exceptions.ObjectNotFoun
import org.gcube.informationsystem.resourceregistry.api.exceptions.context.ContextException; import org.gcube.informationsystem.resourceregistry.api.exceptions.context.ContextException;
/** /**
* @author Luca Frosini (ISTI - CNR) http://www.lucafrosini.com/ * @author Luca Frosini (ISTI - CNR)
* *
*/ */
public class ResourceNotFoundException extends ContextException implements ObjectNotFound { public class ResourceNotFoundException extends ContextException implements ObjectNotFound {

View File

@ -3,7 +3,7 @@ package org.gcube.informationsystem.resourceregistry.api.exceptions.schema;
import org.gcube.informationsystem.resourceregistry.api.exceptions.ResourceRegistryException; import org.gcube.informationsystem.resourceregistry.api.exceptions.ResourceRegistryException;
/** /**
* @author Luca Frosini (ISTI - CNR) http://www.lucafrosini.com/ * @author Luca Frosini (ISTI - CNR)
* *
*/ */
public class SchemaException extends ResourceRegistryException { public class SchemaException extends ResourceRegistryException {

View File

@ -3,7 +3,7 @@ package org.gcube.informationsystem.resourceregistry.api.exceptions.schema;
import org.gcube.informationsystem.resourceregistry.api.exceptions.ObjectNotFound; import org.gcube.informationsystem.resourceregistry.api.exceptions.ObjectNotFound;
/** /**
* @author Luca Frosini (ISTI - CNR) http://www.lucafrosini.com/ * @author Luca Frosini (ISTI - CNR)
* *
*/ */
public class SchemaNotFoundException extends SchemaException implements ObjectNotFound { public class SchemaNotFoundException extends SchemaException implements ObjectNotFound {

View File

@ -4,7 +4,7 @@
package org.gcube.informationsystem.resourceregistry.api.rest; package org.gcube.informationsystem.resourceregistry.api.rest;
/** /**
* @author Luca Frosini (ISTI - CNR) http://www.lucafrosini.com/ * @author Luca Frosini (ISTI - CNR)
*/ */
public class AccessPath { public class AccessPath {

View File

@ -4,7 +4,7 @@
package org.gcube.informationsystem.resourceregistry.api.rest; package org.gcube.informationsystem.resourceregistry.api.rest;
/** /**
* @author Luca Frosini (ISTI - CNR) http://www.lucafrosini.com/ * @author Luca Frosini (ISTI - CNR)
*/ */
public class ContextPath { public class ContextPath {

View File

@ -4,7 +4,7 @@
package org.gcube.informationsystem.resourceregistry.api.rest; package org.gcube.informationsystem.resourceregistry.api.rest;
/** /**
* @author Luca Frosini (ISTI - CNR) http://www.lucafrosini.com/ * @author Luca Frosini (ISTI - CNR)
*/ */
public class EntityPath { public class EntityPath {

View File

@ -4,7 +4,7 @@
package org.gcube.informationsystem.resourceregistry.api.rest; package org.gcube.informationsystem.resourceregistry.api.rest;
/** /**
* @author Luca Frosini (ISTI - CNR) http://www.lucafrosini.com/ * @author Luca Frosini (ISTI - CNR)
*/ */
public class SchemaPath { public class SchemaPath {