Class TagsController


  • @Provider
    @Path("/workspaces/{workspace}/layers/{layername}/features/{gfid}/tags")
    public class TagsController
    extends Object
    • Constructor Detail

      • TagsController

        public TagsController()
    • 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:
        IOException
        SQLException
      • 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:
        IOException
        SQLException