Add a void method to the service for testing purpose.

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/resource-management/resource-manager@154975 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Manuele Simi 2017-10-07 02:56:11 +00:00
parent e04977cf8d
commit d8b4b953aa
1 changed files with 27 additions and 0 deletions

View File

@ -1,8 +1,17 @@
package org.gcube.resourcemanagement.manager.service.rest;
import javax.ws.rs.DefaultValue;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.PathParam;
import javax.ws.rs.Produces;
import javax.ws.rs.QueryParam;
import org.gcube.informationsystem.resourceregistry.api.rest.AccessPath;
import org.gcube.resourcemanagement.manager.service.ResourceInitializer;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
*
* @author Manuele Simi (ISTI-CNR)
@ -10,5 +19,23 @@ import org.gcube.informationsystem.resourceregistry.api.rest.AccessPath;
*/
@Path(AccessPath.ACCESS_PATH_PART)
public class Access {
private static Logger logger = LoggerFactory.getLogger(Access.class);
public static final String ID_PATH_PARAM = "id";
public static final String TYPE_PATH_PARAM = "type";
/*
* e.g. GET /resource-registry/access/schema/ContactFacet?polymorphic=true
*/
@GET
@Path(AccessPath.SCHEMA_PATH_PART + "/{" + TYPE_PATH_PARAM + "}")
@Produces(ResourceInitializer.APPLICATION_JSON_CHARSET_UTF_8)
public String voidMethod(@PathParam(TYPE_PATH_PARAM) String type,
@QueryParam(AccessPath.POLYMORPHIC_PARAM) @DefaultValue("false") Boolean polymorphic)
{
logger.info("Requested Schema for type {}", type);
return "";
}
}