Skip to content

Commit

Permalink
Fix JAX-RS annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
namedgraph committed Oct 21, 2023
1 parent eb927ff commit f330a03
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
import jakarta.servlet.ServletConfig;
import jakarta.ws.rs.BadRequestException;
import jakarta.ws.rs.DefaultValue;
import jakarta.ws.rs.POST;
import jakarta.ws.rs.PUT;
import jakarta.ws.rs.QueryParam;
import jakarta.ws.rs.core.Response.Status;
import jakarta.ws.rs.core.SecurityContext;
Expand Down Expand Up @@ -84,7 +84,7 @@ public ImportItem(@Context Request request, @Context UriInfo uriInfo, MediaTypes
if (log.isDebugEnabled()) log.debug("Constructing {}", getClass());
}

@POST
@PUT
@Override
public Response put(Model model, @QueryParam("default") @DefaultValue("false") Boolean defaultGraph, @QueryParam("graph") URI graphUri)
{
Expand Down

0 comments on commit f330a03

Please sign in to comment.