Class WeblinkController


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

      • WeblinkController

        public WeblinkController()
    • Method Detail

      • getLayerWeblinks

        @GET
        @Path("/")
        @Produces("application/json")
        public javax.ws.rs.core.Response getLayerWeblinks​(@Context
                                                          javax.ws.rs.core.SecurityContext sec,
                                                          @PathParam("workspace")
                                                          String workspace,
                                                          @PathParam("layername")
                                                          String dataLayerName,
                                                          @PathParam("gfid")
                                                          int gfid)
                                                   throws IOException,
                                                          SQLException
        Throws:
        IOException
        SQLException
      • deleteFeatureComment

        @DELETE
        @Path("/{linkId}")
        public javax.ws.rs.core.Response deleteFeatureComment​(@Context
                                                              javax.ws.rs.core.SecurityContext sec,
                                                              @PathParam("workspace")
                                                              String workspace,
                                                              @PathParam("layername")
                                                              String dataLayerName,
                                                              @PathParam("gfid")
                                                              int gfid,
                                                              @PathParam("linkId")
                                                              int linkId)
                                                       throws SQLException
        Throws:
        SQLException