OLINGO-939: Avoiding to use contentType.getType method, instead use contentType.toContentTypeString for string form of the content-type
This commit is contained in:
parent
e4f95706a9
commit
01e27bb6ee
|
@ -114,13 +114,10 @@ public class EntityResponse extends ServiceResponse {
|
||||||
// Note that if media written just like Stream, but on entity URL
|
// Note that if media written just like Stream, but on entity URL
|
||||||
|
|
||||||
// 8.2.8.7
|
// 8.2.8.7
|
||||||
if (this.returnRepresentation == ReturnRepresentation.MINIMAL ||
|
if (this.returnRepresentation == ReturnRepresentation.MINIMAL) {
|
||||||
this.returnRepresentation == ReturnRepresentation.NONE) {
|
|
||||||
writeNoContent(false);
|
writeNoContent(false);
|
||||||
writeHeader(HttpHeader.LOCATION, locationHeader);
|
writeHeader(HttpHeader.LOCATION, locationHeader);
|
||||||
if (this.returnRepresentation == ReturnRepresentation.MINIMAL) {
|
|
||||||
writeHeader("Preference-Applied", "return=minimal"); //$NON-NLS-1$ //$NON-NLS-2$
|
writeHeader("Preference-Applied", "return=minimal"); //$NON-NLS-1$ //$NON-NLS-2$
|
||||||
}
|
|
||||||
// 8.3.3
|
// 8.3.3
|
||||||
writeHeader("OData-EntityId", entity.getId().toASCIIString()); //$NON-NLS-1$
|
writeHeader("OData-EntityId", entity.getId().toASCIIString()); //$NON-NLS-1$
|
||||||
close();
|
close();
|
||||||
|
@ -162,7 +159,7 @@ public class EntityResponse extends ServiceResponse {
|
||||||
|
|
||||||
public void writeError(ODataServerError error) {
|
public void writeError(ODataServerError error) {
|
||||||
try {
|
try {
|
||||||
writeHeader(HttpHeader.CONTENT_TYPE, this.responseContentType.getType());
|
writeHeader(HttpHeader.CONTENT_TYPE, this.responseContentType.toContentTypeString());
|
||||||
writeContent(this.serializer.error(error).getContent(), error.getStatusCode(), true);
|
writeContent(this.serializer.error(error).getContent(), error.getStatusCode(), true);
|
||||||
} catch (SerializerException e) {
|
} catch (SerializerException e) {
|
||||||
writeServerError(true);
|
writeServerError(true);
|
||||||
|
|
|
@ -85,7 +85,7 @@ public class EntitySetResponse extends ServiceResponse {
|
||||||
|
|
||||||
public void writeError(ODataServerError error) {
|
public void writeError(ODataServerError error) {
|
||||||
try {
|
try {
|
||||||
writeHeader(HttpHeader.CONTENT_TYPE, this.responseContentType.getType());
|
writeHeader(HttpHeader.CONTENT_TYPE, this.responseContentType.toContentTypeString());
|
||||||
writeContent(this.serializer.error(error).getContent(), error.getStatusCode(), true);
|
writeContent(this.serializer.error(error).getContent(), error.getStatusCode(), true);
|
||||||
} catch (SerializerException e) {
|
} catch (SerializerException e) {
|
||||||
writeServerError(true);
|
writeServerError(true);
|
||||||
|
|
|
@ -64,7 +64,7 @@ public class MetadataResponse extends ServiceResponse {
|
||||||
|
|
||||||
public void writeError(ODataServerError error) {
|
public void writeError(ODataServerError error) {
|
||||||
try {
|
try {
|
||||||
writeHeader(HttpHeader.CONTENT_TYPE, this.responseContentType.getType());
|
writeHeader(HttpHeader.CONTENT_TYPE, this.responseContentType.toContentTypeString());
|
||||||
writeContent(this.serializer.error(error).getContent(), error.getStatusCode(), true);
|
writeContent(this.serializer.error(error).getContent(), error.getStatusCode(), true);
|
||||||
} catch (SerializerException e) {
|
} catch (SerializerException e) {
|
||||||
writeServerError(true);
|
writeServerError(true);
|
||||||
|
|
|
@ -160,7 +160,7 @@ public class PropertyResponse extends ServiceResponse {
|
||||||
|
|
||||||
public void writeError(ODataServerError error) {
|
public void writeError(ODataServerError error) {
|
||||||
try {
|
try {
|
||||||
writeHeader(HttpHeader.CONTENT_TYPE, this.responseContentType.getType());
|
writeHeader(HttpHeader.CONTENT_TYPE, this.responseContentType.toContentTypeString());
|
||||||
writeContent(this.serializer.error(error).getContent(), error.getStatusCode(), true);
|
writeContent(this.serializer.error(error).getContent(), error.getStatusCode(), true);
|
||||||
} catch (SerializerException e) {
|
} catch (SerializerException e) {
|
||||||
writeServerError(true);
|
writeServerError(true);
|
||||||
|
|
|
@ -65,7 +65,7 @@ public class ServiceDocumentResponse extends ServiceResponse {
|
||||||
|
|
||||||
public void writeError(ODataServerError error) {
|
public void writeError(ODataServerError error) {
|
||||||
try {
|
try {
|
||||||
writeHeader(HttpHeader.CONTENT_TYPE, this.responseContentType.getType());
|
writeHeader(HttpHeader.CONTENT_TYPE, this.responseContentType.toContentTypeString());
|
||||||
writeContent(this.serializer.error(error).getContent(), error.getStatusCode(), true);
|
writeContent(this.serializer.error(error).getContent(), error.getStatusCode(), true);
|
||||||
} catch (SerializerException e) {
|
} catch (SerializerException e) {
|
||||||
writeServerError(true);
|
writeServerError(true);
|
||||||
|
|
Loading…
Reference in New Issue