Skip to content

Commit

Permalink
renamed method
Browse files Browse the repository at this point in the history
  • Loading branch information
j-dimension committed Nov 24, 2023
1 parent f6e96c0 commit 41cbc8e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -676,6 +676,6 @@ public interface MessagingEndpointLocalV7 {

public Response submitMessage(RestfulInstantMessageV7 msg);

public Response deleteDocument(String id);
public Response deleteMessage(String id);

}
Original file line number Diff line number Diff line change
Expand Up @@ -772,7 +772,7 @@ public Response submitMessage(RestfulInstantMessageV7 msg) {
@Consumes(MediaType.APPLICATION_JSON)
@Path("/{id}/delete")
@RolesAllowed({"loginRole"})
public Response deleteDocument(@PathParam("id") String id) {
public Response deleteMessage(@PathParam("id") String id) {
try {

InitialContext ic = new InitialContext();
Expand Down

0 comments on commit 41cbc8e

Please sign in to comment.