Update service to remove /delete from url and to update swagger api annotations

feature/appm-store/pbac
Yohan Avishke 5 years ago
parent 9d7ad19f57
commit 4a70d8e17d

@ -594,7 +594,7 @@ public interface DeviceTypeManagementAdminService {
@DELETE @DELETE
@Path("/{deviceTypeName}/delete") @Path("/{deviceTypeName}")
@ApiOperation( @ApiOperation(
httpMethod = "DELETE", httpMethod = "DELETE",
value = "Delete device type.", value = "Delete device type.",
@ -618,6 +618,9 @@ public interface DeviceTypeManagementAdminService {
code = 401, code = 401,
message = "Unauthorized.\n The unauthorized access to the requested resource.", message = "Unauthorized.\n The unauthorized access to the requested resource.",
response = ErrorResponse.class), response = ErrorResponse.class),
@ApiResponse(
code = 404,
message = "Not Found. \n Device type trying to delete does not exist"),
@ApiResponse( @ApiResponse(
code = 406, code = 406,
message = "Not Acceptable. \n The requested media type is not supported"), message = "Not Acceptable. \n The requested media type is not supported"),

@ -320,7 +320,7 @@ public class DeviceTypeManagementAdminServiceImpl implements DeviceTypeManagemen
@Override @Override
@DELETE @DELETE
@Path("/{deviceTypeName}/delete") @Path("/{deviceTypeName}")
public Response deleteDeviceType(@PathParam("deviceTypeName") String deviceTypeName) { public Response deleteDeviceType(@PathParam("deviceTypeName") String deviceTypeName) {
try { try {
DeviceManagementProviderService deviceManagementProviderService = DeviceManagementProviderService deviceManagementProviderService =

Loading…
Cancel
Save