fix responce code

revert-dabc3590
hasuniea 9 years ago
parent ec91b0a539
commit c170373ace

@ -150,7 +150,7 @@ public class EventReceiverServiceImpl implements EventReceiverService {
deviceStates = AndroidAPIUtils.getAllEventsForDevice(EVENT_STREAM_DEFINITION, query);
if (deviceStates == null) {
message.setResponseCode("No any alerts are published for given Device: " +
"" + deviceId + " on specific date.");
"" + deviceId + "and given specific Type.");
return Response.status(Response.Status.NOT_FOUND).entity(message).build();
} else {
@ -158,7 +158,7 @@ public class EventReceiverServiceImpl implements EventReceiverService {
}
} catch (AnalyticsException e) {
String msg = "Error occurred while getting published events for specific " +
"Device: " + deviceId + "and given device Type.";
"Device: " + deviceId + "and given specific Type.";
log.error(msg, e);
throw new UnexpectedServerErrorException(
new ErrorResponse.ErrorResponseBuilder().setCode(500l).setMessage(msg).build());

Loading…
Cancel
Save