Uses of Class
org.apache.olingo.odata2.api.processor.ODataResponse

Packages that use ODataResponse
org.apache.olingo.odata2.api OData Library API 
org.apache.olingo.odata2.api.batch   
org.apache.olingo.odata2.api.ep Entity Provider 
org.apache.olingo.odata2.api.processor Data Processor 
org.apache.olingo.odata2.api.processor.part Processor Parts 
org.apache.olingo.odata2.jpa.processor.api OData JPA Processor API Library 
org.apache.olingo.odata2.jpa.processor.api.exception OData JPA Processor API Library - Exceptions 
org.apache.olingo.odata2.ref.processor   
 

Uses of ODataResponse in org.apache.olingo.odata2.api
 

Methods in org.apache.olingo.odata2.api that return ODataResponse
 ODataResponse ODataDebugResponseWrapperCallback.handle(ODataContext context, ODataRequest request, ODataResponse response, UriInfo uriInfo, Exception exception)
          Handles the output of a response helpful in case of debugging.
 

Methods in org.apache.olingo.odata2.api with parameters of type ODataResponse
 ODataResponse ODataDebugResponseWrapperCallback.handle(ODataContext context, ODataRequest request, ODataResponse response, UriInfo uriInfo, Exception exception)
          Handles the output of a response helpful in case of debugging.
 

Uses of ODataResponse in org.apache.olingo.odata2.api.batch
 

Methods in org.apache.olingo.odata2.api.batch that return ODataResponse
 ODataResponse BatchHandler.handleRequest(ODataRequest request)
          Delegates a handling of the request ODataRequest to the request handler and provides ODataResponse ODataResponse.
 

Methods in org.apache.olingo.odata2.api.batch that return types with arguments of type ODataResponse
abstract  List<ODataResponse> BatchResponsePart.getResponses()
          Get responses.
 

Method parameters in org.apache.olingo.odata2.api.batch with type arguments of type ODataResponse
static BatchResponsePart.BatchResponsePartBuilder BatchResponsePart.responses(List<ODataResponse> responses)
           
abstract  BatchResponsePart.BatchResponsePartBuilder BatchResponsePart.BatchResponsePartBuilder.responses(List<ODataResponse> responses)
           
 

Uses of ODataResponse in org.apache.olingo.odata2.api.ep
 

Methods in org.apache.olingo.odata2.api.ep that return ODataResponse
static ODataResponse EntityProvider.writeBatchResponse(List<BatchResponsePart> batchResponseParts)
          Write responses of Batch Response Parts in Batch Response as ODataResponse.
 ODataResponse EntityProvider.EntityProviderInterface.writeBatchResponse(List<BatchResponsePart> batchResponseParts)
          Write responses of Batch Response Parts in Batch Response as ODataResponse.
static ODataResponse EntityProvider.writeBinary(String mimeType, byte[] data)
          Write binary content with content type header set to given mime type parameter.
 ODataResponse EntityProvider.EntityProviderInterface.writeBinary(String mimeType, byte[] data)
          Write binary content with content type header set to given mime type parameter.
static ODataResponse EntityProvider.writeEntry(String contentType, EdmEntitySet entitySet, Map<String,Object> data, EntityProviderWriteProperties properties)
          Write given data (which is given in form of a Map for which contains all properties as property name to property value mapping) for the entry in the specified format (given as contentType) based on entity data model for an entity set (given as EdmEntitySet) and properties for this entity provider (given as EntityProviderWriteProperties).
 ODataResponse EntityProvider.EntityProviderInterface.writeEntry(String contentType, EdmEntitySet entitySet, Map<String,Object> data, EntityProviderWriteProperties properties)
          Write given data (which is given in form of a Map for which contains all properties as property name to property value mapping) for the entry in the specified format (given as contentType) based on entity data model for an entity set (given as EdmEntitySet) and properties for this entity provider (given as EntityProviderWriteProperties).
static ODataResponse EntityProvider.writeErrorDocument(ODataErrorContext context)
          Serializes an error message according to the OData standard.
 ODataResponse EntityProvider.EntityProviderInterface.writeErrorDocument(ODataErrorContext context)
          Serializes an error message according to the OData standard.
static ODataResponse EntityProvider.writeFeed(String contentType, EdmEntitySet entitySet, List<Map<String,Object>> data, EntityProviderWriteProperties properties)
          Write given data (which is given in form of a List with a Map for each entity.
 ODataResponse EntityProvider.EntityProviderInterface.writeFeed(String contentType, EdmEntitySet entitySet, List<Map<String,Object>> data, EntityProviderWriteProperties properties)
          Write given data (which is given in form of a List with a Map for each entity.
static ODataResponse EntityProvider.writeFunctionImport(String contentType, EdmFunctionImport functionImport, Object data, EntityProviderWriteProperties properties)
          Write data result (given as Object) of function import based on return type of EdmFunctionImport in specified format (given as contentType).
 ODataResponse EntityProvider.EntityProviderInterface.writeFunctionImport(String contentType, EdmFunctionImport functionImport, Object data, EntityProviderWriteProperties properties)
          Write data result (given as Object) of function import based on return type of EdmFunctionImport in specified format (given as contentType).
static ODataResponse EntityProvider.writeLink(String contentType, EdmEntitySet entitySet, Map<String,Object> data, EntityProviderWriteProperties properties)
          Write link for key property based on entity data model for an entity set (given as EdmEntitySet) in the specified format (given as contentType).
 ODataResponse EntityProvider.EntityProviderInterface.writeLink(String contentType, EdmEntitySet entitySet, Map<String,Object> data, EntityProviderWriteProperties properties)
          Write link for key property based on entity data model for an entity set (given as EdmEntitySet) in the specified format (given as contentType).
static ODataResponse EntityProvider.writeLinks(String contentType, EdmEntitySet entitySet, List<Map<String,Object>> data, EntityProviderWriteProperties properties)
          Write all links for key property based on entity data model for an entity set (given as EdmEntitySet) in the specified format (given as contentType) for a set of entries.
 ODataResponse EntityProvider.EntityProviderInterface.writeLinks(String contentType, EdmEntitySet entitySet, List<Map<String,Object>> data, EntityProviderWriteProperties properties)
          Write all links for key property based on entity data model for an entity set (given as EdmEntitySet) in the specified format (given as contentType) for a set of entries.
static ODataResponse EntityProvider.writeMetadata(List<Schema> schemas, Map<String,String> predefinedNamespaces)
          Write metadata document in XML format for the given schemas and the provided predefined namespaces at the EDMX element.
 ODataResponse EntityProvider.EntityProviderInterface.writeMetadata(List<Schema> schemas, Map<String,String> predefinedNamespaces)
          Write metadata document in XML format for the given schemas and the provided predefined namespaces at the EDMX element.
static ODataResponse EntityProvider.writeProperty(String contentType, EdmProperty edmProperty, Object value)
          Write given value (which is given in form of an Object) for the property in the specified format (given as contentType) based on given entity data model for an entity property (given as EdmProperty).
 ODataResponse EntityProvider.EntityProviderInterface.writeProperty(String contentType, EdmProperty edmProperty, Object value)
          Write given value (which is given in form of an Object) for the property in the specified format (given as contentType) based on given entity data model for an entity property (given as EdmProperty).
static ODataResponse EntityProvider.writePropertyValue(EdmProperty edmProperty, Object value)
          Write property as content type application/octet-stream or text/plain.
 ODataResponse EntityProvider.EntityProviderInterface.writePropertyValue(EdmProperty edmProperty, Object value)
          Write property as content type application/octet-stream or text/plain.
static ODataResponse EntityProvider.writeServiceDocument(String contentType, Edm edm, String serviceRoot)
          Write service document based on given Edm and service root as given content type.
 ODataResponse EntityProvider.EntityProviderInterface.writeServiceDocument(String contentType, Edm edm, String serviceRoot)
          Write service document based on given Edm and service root as given content type.
static ODataResponse EntityProvider.writeText(String value)
          Write text value as content type text/plain.
 ODataResponse EntityProvider.EntityProviderInterface.writeText(String value)
          Write text value as content type text/plain.
 

Uses of ODataResponse in org.apache.olingo.odata2.api.processor
 

Methods in org.apache.olingo.odata2.api.processor that return ODataResponse
abstract  ODataResponse ODataResponse.ODataResponseBuilder.build()
           
 ODataResponse ODataSingleProcessor.countEntityLinks(GetEntitySetLinksCountUriInfo uriInfo, String contentType)
           
 ODataResponse ODataSingleProcessor.countEntitySet(GetEntitySetCountUriInfo uriInfo, String contentType)
           
 ODataResponse ODataSingleProcessor.createEntity(PostUriInfo uriInfo, InputStream content, String requestContentType, String contentType)
           
 ODataResponse ODataSingleProcessor.createEntityLink(PostUriInfo uriInfo, InputStream content, String requestContentType, String contentType)
           
 ODataResponse ODataSingleProcessor.deleteEntity(DeleteUriInfo uriInfo, String contentType)
           
 ODataResponse ODataSingleProcessor.deleteEntityLink(DeleteUriInfo uriInfo, String contentType)
           
 ODataResponse ODataSingleProcessor.deleteEntityMedia(DeleteUriInfo uriInfo, String contentType)
           
 ODataResponse ODataSingleProcessor.deleteEntitySimplePropertyValue(DeleteUriInfo uriInfo, String contentType)
           
 ODataResponse ODataSingleProcessor.executeBatch(BatchHandler handler, String contentType, InputStream content)
           
 ODataResponse ODataSingleProcessor.executeFunctionImport(GetFunctionImportUriInfo uriInfo, String contentType)
           
 ODataResponse ODataSingleProcessor.executeFunctionImportValue(GetFunctionImportUriInfo uriInfo, String contentType)
           
 ODataResponse ODataSingleProcessor.existsEntity(GetEntityCountUriInfo uriInfo, String contentType)
           
 ODataResponse ODataSingleProcessor.existsEntityLink(GetEntityLinkCountUriInfo uriInfo, String contentType)
           
 ODataResponse ODataErrorCallback.handleError(ODataErrorContext context)
          This method can be used to handle an error differently than the exception mapper would.
 ODataResponse ODataSingleProcessor.readEntity(GetEntityUriInfo uriInfo, String contentType)
           
 ODataResponse ODataSingleProcessor.readEntityComplexProperty(GetComplexPropertyUriInfo uriInfo, String contentType)
           
 ODataResponse ODataSingleProcessor.readEntityLink(GetEntityLinkUriInfo uriInfo, String contentType)
           
 ODataResponse ODataSingleProcessor.readEntityLinks(GetEntitySetLinksUriInfo uriInfo, String contentType)
           
 ODataResponse ODataSingleProcessor.readEntityMedia(GetMediaResourceUriInfo uriInfo, String contentType)
           
 ODataResponse ODataSingleProcessor.readEntitySet(GetEntitySetUriInfo uriInfo, String contentType)
           
 ODataResponse ODataSingleProcessor.readEntitySimpleProperty(GetSimplePropertyUriInfo uriInfo, String contentType)
           
 ODataResponse ODataSingleProcessor.readEntitySimplePropertyValue(GetSimplePropertyUriInfo uriInfo, String contentType)
           
 ODataResponse ODataSingleProcessor.readMetadata(GetMetadataUriInfo uriInfo, String contentType)
           
 ODataResponse ODataSingleProcessor.readServiceDocument(GetServiceDocumentUriInfo uriInfo, String contentType)
           
 ODataResponse ODataSingleProcessor.updateEntity(PutMergePatchUriInfo uriInfo, InputStream content, String requestContentType, boolean merge, String contentType)
           
 ODataResponse ODataSingleProcessor.updateEntityComplexProperty(PutMergePatchUriInfo uriInfo, InputStream content, String requestContentType, boolean merge, String contentType)
           
 ODataResponse ODataSingleProcessor.updateEntityLink(PutMergePatchUriInfo uriInfo, InputStream content, String requestContentType, String contentType)
           
 ODataResponse ODataSingleProcessor.updateEntityMedia(PutMergePatchUriInfo uriInfo, InputStream content, String requestContentType, String contentType)
           
 ODataResponse ODataSingleProcessor.updateEntitySimpleProperty(PutMergePatchUriInfo uriInfo, InputStream content, String requestContentType, String contentType)
           
 ODataResponse ODataSingleProcessor.updateEntitySimplePropertyValue(PutMergePatchUriInfo uriInfo, InputStream content, String requestContentType, String contentType)
           
 

Methods in org.apache.olingo.odata2.api.processor with parameters of type ODataResponse
static ODataResponse.ODataResponseBuilder ODataResponse.fromResponse(ODataResponse response)
           
protected abstract  ODataResponse.ODataResponseBuilder ODataResponse.ODataResponseBuilder.fromResponse(ODataResponse response)
           
 

Uses of ODataResponse in org.apache.olingo.odata2.api.processor.part
 

Methods in org.apache.olingo.odata2.api.processor.part that return ODataResponse
 ODataResponse EntityLinksProcessor.countEntityLinks(GetEntitySetLinksCountUriInfo uriInfo, String contentType)
          Counts the number of target entities of a navigation property.
 ODataResponse EntitySetProcessor.countEntitySet(GetEntitySetCountUriInfo uriInfo, String contentType)
          Counts the number of requested entities.
 ODataResponse EntitySetProcessor.createEntity(PostUriInfo uriInfo, InputStream content, String requestContentType, String contentType)
          Creates an entity.
 ODataResponse EntityLinksProcessor.createEntityLink(PostUriInfo uriInfo, InputStream content, String requestContentType, String contentType)
          Creates a new link to a target entity of a navigation property.
 ODataResponse EntityProcessor.deleteEntity(DeleteUriInfo uriInfo, String contentType)
          Deletes an entity.
 ODataResponse EntityLinkProcessor.deleteEntityLink(DeleteUriInfo uriInfo, String contentType)
          Deletes the link to the target entity of a navigation property.
 ODataResponse EntityMediaProcessor.deleteEntityMedia(DeleteUriInfo uriInfo, String contentType)
          Deletes the media resource of an entity.
 ODataResponse EntitySimplePropertyValueProcessor.deleteEntitySimplePropertyValue(DeleteUriInfo uriInfo, String contentType)
          Deletes the value of a simple property of an entity.
 ODataResponse BatchProcessor.executeBatch(BatchHandler handler, String contentType, InputStream content)
          Executes a OData batch request and provide Batch Response as ODataResponse
 ODataResponse FunctionImportProcessor.executeFunctionImport(GetFunctionImportUriInfo uriInfo, String contentType)
          Executes a function import and returns the result.
 ODataResponse FunctionImportValueProcessor.executeFunctionImportValue(GetFunctionImportUriInfo uriInfo, String contentType)
          Returns the unformatted value of a function import.
 ODataResponse EntityProcessor.existsEntity(GetEntityCountUriInfo uriInfo, String contentType)
          Checks whether an entity exists.
 ODataResponse EntityLinkProcessor.existsEntityLink(GetEntityLinkCountUriInfo uriInfo, String contentType)
          Returns whether the target entity of a navigation property exists.
 ODataResponse EntityProcessor.readEntity(GetEntityUriInfo uriInfo, String contentType)
          Reads an entity.
 ODataResponse EntityComplexPropertyProcessor.readEntityComplexProperty(GetComplexPropertyUriInfo uriInfo, String contentType)
          Reads a complex property of an entity.
 ODataResponse EntityLinkProcessor.readEntityLink(GetEntityLinkUriInfo uriInfo, String contentType)
          Reads the URI of the target entity of a navigation property.
 ODataResponse EntityLinksProcessor.readEntityLinks(GetEntitySetLinksUriInfo uriInfo, String contentType)
          Reads the URIs of the target entities of a navigation property.
 ODataResponse EntityMediaProcessor.readEntityMedia(GetMediaResourceUriInfo uriInfo, String contentType)
          Reads the media resource of an entity.
 ODataResponse EntitySetProcessor.readEntitySet(GetEntitySetUriInfo uriInfo, String contentType)
          Reads entities.
 ODataResponse EntitySimplePropertyProcessor.readEntitySimpleProperty(GetSimplePropertyUriInfo uriInfo, String contentType)
          Reads a simple property of an entity.
 ODataResponse EntitySimplePropertyValueProcessor.readEntitySimplePropertyValue(GetSimplePropertyUriInfo uriInfo, String contentType)
          Reads the unformatted value of a simple property of an entity.
 ODataResponse MetadataProcessor.readMetadata(GetMetadataUriInfo uriInfo, String contentType)
           
 ODataResponse ServiceDocumentProcessor.readServiceDocument(GetServiceDocumentUriInfo uriInfo, String contentType)
           
 ODataResponse EntityProcessor.updateEntity(PutMergePatchUriInfo uriInfo, InputStream content, String requestContentType, boolean merge, String contentType)
          Updates an entity.
 ODataResponse EntityComplexPropertyProcessor.updateEntityComplexProperty(PutMergePatchUriInfo uriInfo, InputStream content, String requestContentType, boolean merge, String contentType)
          Updates a complex property of an entity.
 ODataResponse EntityLinkProcessor.updateEntityLink(PutMergePatchUriInfo uriInfo, InputStream content, String requestContentType, String contentType)
          Updates the link to the target entity of a navigation property.
 ODataResponse EntityMediaProcessor.updateEntityMedia(PutMergePatchUriInfo uriInfo, InputStream content, String requestContentType, String contentType)
          Updates the media resource of an entity.
 ODataResponse EntitySimplePropertyProcessor.updateEntitySimpleProperty(PutMergePatchUriInfo uriInfo, InputStream content, String requestContentType, String contentType)
          Updates a simple property of an entity.
 ODataResponse EntitySimplePropertyValueProcessor.updateEntitySimplePropertyValue(PutMergePatchUriInfo uriInfo, InputStream content, String requestContentType, String contentType)
          Updates a simple property of an entity with an unformatted value.
 

Uses of ODataResponse in org.apache.olingo.odata2.jpa.processor.api
 

Methods in org.apache.olingo.odata2.jpa.processor.api that return ODataResponse
 ODataResponse ODataJPAResponseBuilder.build(DeleteUriInfo deleteUriInfo, Object deletedObject)
          The method builds an OData response for an OData Delete Request from a deleted JPA Entity
 ODataResponse ODataJPAResponseBuilder.build(GetEntityLinkUriInfo readLinkUriInfo, Object jpaEntity, String contentType)
          The method builds an OData response for an OData Read Link Request from a read JPA Entity and its related JPA Entities.
 ODataResponse ODataJPAResponseBuilder.build(GetEntitySetLinksUriInfo queryLinkUriInfo, List<Object> jpaEntity, String contentType)
          The method builds an OData response for an OData Query Link Request from a queried JPA Entity and its related JPA Entities.
 ODataResponse ODataJPAResponseBuilder.build(GetEntitySetUriInfo queryUriInfo, List<Object> jpaEntities, String contentType)
          The method builds an OData response for an OData Query Request from a queried list of JPA Entities.
 ODataResponse ODataJPAResponseBuilder.build(GetEntityUriInfo readUriInfo, Object jpaEntity, String contentType)
          The method builds an OData response for an OData Read Request from a read JPA Entity
 ODataResponse ODataJPAResponseBuilder.build(GetFunctionImportUriInfo functionImportUriInfo, List<Object> resultList, String contentType)
          The method builds an OData response for an OData function Import Request from a registered processor method's return parameter.
 ODataResponse ODataJPAResponseBuilder.build(GetFunctionImportUriInfo functionImportUriInfo, Object result)
          The method builds an OData response for an OData function Import Request from a registered processor method's return parameter.
 ODataResponse ODataJPAResponseBuilder.build(long jpaEntityCount)
          The method builds an OData response from a count representing total number of JPA Entities
 ODataResponse ODataJPAResponseBuilder.build(PostUriInfo postUriInfo, Object createdObject, String contentType)
          The method builds an OData response for an OData Create Request from a created JPA entity.
 ODataResponse ODataJPAResponseBuilder.build(PutMergePatchUriInfo putUriInfo, Object updatedObject)
          The method builds an OData response for an OData Update Request from an updated JPA Entity
 

Uses of ODataResponse in org.apache.olingo.odata2.jpa.processor.api.exception
 

Methods in org.apache.olingo.odata2.jpa.processor.api.exception that return ODataResponse
 ODataResponse ODataJPAErrorCallback.handleError(ODataErrorContext context)
           
 

Uses of ODataResponse in org.apache.olingo.odata2.ref.processor
 

Methods in org.apache.olingo.odata2.ref.processor that return ODataResponse
 ODataResponse ListsProcessor.countEntityLinks(GetEntitySetLinksCountUriInfo uriInfo, String contentType)
           
 ODataResponse ListsProcessor.countEntitySet(GetEntitySetCountUriInfo uriInfo, String contentType)
           
 ODataResponse ListsProcessor.createEntity(PostUriInfo uriInfo, InputStream content, String requestContentType, String contentType)
           
 ODataResponse ListsProcessor.createEntityLink(PostUriInfo uriInfo, InputStream content, String requestContentType, String contentType)
           
 ODataResponse ListsProcessor.deleteEntity(DeleteUriInfo uriInfo, String contentType)
           
 ODataResponse ListsProcessor.deleteEntityLink(DeleteUriInfo uriInfo, String contentType)
           
 ODataResponse ListsProcessor.deleteEntityMedia(DeleteUriInfo uriInfo, String contentType)
           
 ODataResponse ListsProcessor.deleteEntitySimplePropertyValue(DeleteUriInfo uriInfo, String contentType)
           
 ODataResponse ListsProcessor.executeBatch(BatchHandler handler, String contentType, InputStream content)
           
 ODataResponse ListsProcessor.executeFunctionImport(GetFunctionImportUriInfo uriInfo, String contentType)
           
 ODataResponse ListsProcessor.executeFunctionImportValue(GetFunctionImportUriInfo uriInfo, String contentType)
           
 ODataResponse ListsProcessor.existsEntity(GetEntityCountUriInfo uriInfo, String contentType)
           
 ODataResponse ListsProcessor.existsEntityLink(GetEntityLinkCountUriInfo uriInfo, String contentType)
           
 ODataResponse ScenarioErrorCallback.handleError(ODataErrorContext context)
           
 ODataResponse ListsProcessor.readEntity(GetEntityUriInfo uriInfo, String contentType)
           
 ODataResponse ListsProcessor.readEntityComplexProperty(GetComplexPropertyUriInfo uriInfo, String contentType)
           
 ODataResponse ListsProcessor.readEntityLink(GetEntityLinkUriInfo uriInfo, String contentType)
           
 ODataResponse ListsProcessor.readEntityLinks(GetEntitySetLinksUriInfo uriInfo, String contentType)
           
 ODataResponse ListsProcessor.readEntityMedia(GetMediaResourceUriInfo uriInfo, String contentType)
           
 ODataResponse ListsProcessor.readEntitySet(GetEntitySetUriInfo uriInfo, String contentType)
           
 ODataResponse ListsProcessor.readEntitySimpleProperty(GetSimplePropertyUriInfo uriInfo, String contentType)
           
 ODataResponse ListsProcessor.readEntitySimplePropertyValue(GetSimplePropertyUriInfo uriInfo, String contentType)
           
 ODataResponse ListsProcessor.updateEntity(PutMergePatchUriInfo uriInfo, InputStream content, String requestContentType, boolean merge, String contentType)
           
 ODataResponse ListsProcessor.updateEntityComplexProperty(PutMergePatchUriInfo uriInfo, InputStream content, String requestContentType, boolean merge, String contentType)
           
 ODataResponse ListsProcessor.updateEntityLink(PutMergePatchUriInfo uriInfo, InputStream content, String requestContentType, String contentType)
           
 ODataResponse ListsProcessor.updateEntityMedia(PutMergePatchUriInfo uriInfo, InputStream content, String requestContentType, String contentType)
           
 ODataResponse ListsProcessor.updateEntitySimpleProperty(PutMergePatchUriInfo uriInfo, InputStream content, String requestContentType, String contentType)
           
 ODataResponse ListsProcessor.updateEntitySimplePropertyValue(PutMergePatchUriInfo uriInfo, InputStream content, String requestContentType, String contentType)
           
 



Copyright © 2013-2015 The Apache Software Foundation. All Rights Reserved.