Package de.narimo.georepo.server.api
Class TagsController
- java.lang.Object
-
- de.narimo.georepo.server.api.TagsController
-
@Provider @Path("/workspaces/{workspace}/layers/{layername}/features/{gfid}/tags") public class TagsController extends Object
-
-
Constructor Summary
Constructors Constructor Description TagsController()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description javax.ws.rs.core.ResponseaddFeatureTags(javax.ws.rs.core.SecurityContext sec, String workspace, String dataLayerName, int gfid, List<String> tags)javax.ws.rs.core.ResponseremoveFeatureTags(javax.ws.rs.core.SecurityContext sec, String workspace, String dataLayerName, int gfid, List<String> tags)
-
-
-
Method Detail
-
addFeatureTags
@POST @Path("/") @Consumes("application/json") public javax.ws.rs.core.Response addFeatureTags(@Context javax.ws.rs.core.SecurityContext sec, @PathParam("workspace") String workspace, @PathParam("layername") String dataLayerName, @PathParam("gfid") int gfid, List<String> tags) throws IOException, SQLException- Throws:
IOExceptionSQLException
-
removeFeatureTags
@DELETE @Path("/") @Consumes("application/json") public javax.ws.rs.core.Response removeFeatureTags(@Context javax.ws.rs.core.SecurityContext sec, @PathParam("workspace") String workspace, @PathParam("layername") String dataLayerName, @PathParam("gfid") int gfid, List<String> tags) throws IOException, SQLException- Throws:
IOExceptionSQLException
-
-