From af464e2cab8d7dae16e9eed157acb9d1d8808147 Mon Sep 17 00:00:00 2001 From: Klaus Straubinger Date: Thu, 23 Oct 2014 15:17:51 +0200 Subject: [PATCH] [OLINGO-444] error from tech. service for property values not found Change-Id: Id886548287a4e622cc0157c19343b2decf228cae Signed-off-by: Michael Bolz --- .../olingo/server/tecsvc/processor/TechnicalProcessor.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/server-tecsvc/src/main/java/org/apache/olingo/server/tecsvc/processor/TechnicalProcessor.java b/lib/server-tecsvc/src/main/java/org/apache/olingo/server/tecsvc/processor/TechnicalProcessor.java index f05002e88..383b889f4 100644 --- a/lib/server-tecsvc/src/main/java/org/apache/olingo/server/tecsvc/processor/TechnicalProcessor.java +++ b/lib/server-tecsvc/src/main/java/org/apache/olingo/server/tecsvc/processor/TechnicalProcessor.java @@ -244,7 +244,7 @@ public class TechnicalProcessor implements EntitySetProcessor, EntityProcessor, final EdmProperty edmProperty = uriProperty.getProperty(); final Property property = entity.getProperty(edmProperty.getName()); if (property == null) { - response.setStatusCode(HttpStatusCode.NOT_FOUND.getStatusCode()); + throw new ODataApplicationException("Nothing found.", HttpStatusCode.NOT_FOUND.getStatusCode(), Locale.ROOT); } else { if (property.getValue() == null) { response.setStatusCode(HttpStatusCode.NO_CONTENT.getStatusCode()); @@ -272,7 +272,7 @@ public class TechnicalProcessor implements EntitySetProcessor, EntityProcessor, final EdmEntitySet edmEntitySet = getEdmEntitySet(uriInfo.asUriInfoResource()); final Entity entity = readEntityInternal(uriInfo.asUriInfoResource(), edmEntitySet); if (entity == null) { - response.setStatusCode(HttpStatusCode.NOT_FOUND.getStatusCode()); + throw new ODataApplicationException("Nothing found.", HttpStatusCode.NOT_FOUND.getStatusCode(), Locale.ROOT); } else { final UriResourceProperty uriProperty = (UriResourceProperty) uriInfo.getUriResourceParts().get(uriInfo.getUriResourceParts().size() - 2);