Class FeatureController


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

      • FeatureController

        public FeatureController()
    • Method Detail

      • getFeatures

        @GET
        @Path("/")
        @Produces("application/json")
        public static javax.ws.rs.core.Response getFeatures​(@PathParam("workspace")
                                                            String dataWorkspace,
                                                            @PathParam("layername")
                                                            String dataLayerName,
                                                            @Context
                                                            javax.ws.rs.core.SecurityContext sec,
                                                            @Context
                                                            javax.servlet.ServletContext ctx)
      • getFeature

        @GET
        @Path("/{gfid}")
        @Produces("application/json")
        public static javax.ws.rs.core.Response getFeature​(@PathParam("workspace")
                                                           String dataWorkspace,
                                                           @PathParam("layername")
                                                           String dataLayerName,
                                                           @PathParam("gfid")
                                                           int gfid,
                                                           @Context
                                                           javax.ws.rs.core.SecurityContext sec,
                                                           @Context
                                                           javax.servlet.ServletContext ctx)
      • getFeatureHistory

        @GET
        @Path("/{gfid}/history")
        @Produces("application/json")
        public static javax.ws.rs.core.Response getFeatureHistory​(@PathParam("workspace")
                                                                  String dataWorkspace,
                                                                  @PathParam("layername")
                                                                  String dataLayerName,
                                                                  @PathParam("gfid")
                                                                  int gfid,
                                                                  @Context
                                                                  javax.ws.rs.core.SecurityContext sec,
                                                                  @Context
                                                                  javax.servlet.ServletContext ctx)