Package de.narimo.georepo.server.api
Class WeblinkController
- java.lang.Object
-
- de.narimo.georepo.server.api.WeblinkController
-
@Provider @Path("/workspaces/{workspace}/layers/{layername}/features/{gfid}/links") public class WeblinkController extends Object
-
-
Constructor Summary
Constructors Constructor Description WeblinkController()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description javax.ws.rs.core.ResponsedeleteFeatureComment(javax.ws.rs.core.SecurityContext sec, String workspace, String dataLayerName, int gfid, int linkId)javax.ws.rs.core.ResponsegetLayerWeblinks(javax.ws.rs.core.SecurityContext sec, String workspace, String dataLayerName, int gfid)
-
-
-
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:
IOExceptionSQLException
-
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
-
-