Class DocumentController


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

      • DocumentController

        public DocumentController()
    • Method Detail

      • getFeatureDocuments

        @GET
        @Path("/")
        @Produces("application/json")
        public javax.ws.rs.core.Response getFeatureDocuments​(@Context
                                                             javax.ws.rs.core.SecurityContext sec,
                                                             @Context
                                                             javax.servlet.ServletContext ctx,
                                                             @PathParam("workspace")
                                                             String workspace,
                                                             @PathParam("layername")
                                                             String layerName,
                                                             @PathParam("gfid")
                                                             int gfid)
      • getFeatureDocument

        @GET
        @Path("/{filename}")
        @Produces("application/pdf")
        public javax.ws.rs.core.Response getFeatureDocument​(@Context
                                                            javax.ws.rs.core.SecurityContext sec,
                                                            @Context
                                                            javax.servlet.ServletContext ctx,
                                                            @PathParam("workspace")
                                                            String workspace,
                                                            @PathParam("layername")
                                                            String layerName,
                                                            @PathParam("gfid")
                                                            int gfid,
                                                            @PathParam("filename")
                                                            String fileName)