mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-10 15:35:49 +01:00
Add exception mappers for create conflicts
This commit is contained in:
@@ -0,0 +1,16 @@
|
|||||||
|
package sonia.scm.api.rest;
|
||||||
|
|
||||||
|
import sonia.scm.group.GroupAlreadyExistsException;
|
||||||
|
|
||||||
|
import javax.ws.rs.core.Response;
|
||||||
|
import javax.ws.rs.core.Response.Status;
|
||||||
|
import javax.ws.rs.ext.ExceptionMapper;
|
||||||
|
import javax.ws.rs.ext.Provider;
|
||||||
|
|
||||||
|
@Provider
|
||||||
|
public class GroupAlreadyExistsExceptionMapper implements ExceptionMapper<GroupAlreadyExistsException> {
|
||||||
|
@Override
|
||||||
|
public Response toResponse(GroupAlreadyExistsException exception) {
|
||||||
|
return Response.status(Status.CONFLICT).build();
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
package sonia.scm.api.rest;
|
||||||
|
|
||||||
|
import sonia.scm.user.UserAlreadyExistsException;
|
||||||
|
|
||||||
|
import javax.ws.rs.core.Response;
|
||||||
|
import javax.ws.rs.core.Response.Status;
|
||||||
|
import javax.ws.rs.ext.ExceptionMapper;
|
||||||
|
import javax.ws.rs.ext.Provider;
|
||||||
|
|
||||||
|
@Provider
|
||||||
|
public class UserAlreadyExistsExceptionMapper implements ExceptionMapper<UserAlreadyExistsException> {
|
||||||
|
@Override
|
||||||
|
public Response toResponse(UserAlreadyExistsException exception) {
|
||||||
|
return Response.status(Status.CONFLICT).build();
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user