Package | Description |
---|---|
org.apache.olingo.odata2.api.edm.provider |
Entity Data Model Provider API
Classes in this package are used to provide an EDM to the library as well as to the application.
|
org.apache.olingo.odata2.api.ep |
Entity Provider
The org.apache.olingo.odata2.api.ep package contains all classes related and necessary to provide an
EntityProvider . |
org.apache.olingo.odata2.api.ep.callback |
Entity Provider Callbacks
These callbacks will be used to support the $expand query option.
|
org.apache.olingo.odata2.api.rt |
Runtime Support
Provides a mechanism for loading of implementation classes for interfaces.
|
org.apache.olingo.odata2.api.servicedocument | |
org.apache.olingo.odata2.client.api | |
org.apache.olingo.odata2.client.api.ep | |
org.apache.olingo.odata2.client.core | |
org.apache.olingo.odata2.client.core.ep | |
org.apache.olingo.odata2.client.core.ep.deserializer | |
org.apache.olingo.odata2.client.core.ep.serializer |
Modifier and Type | Method and Description |
---|---|
static EdmProvider |
EdmProviderFactory.getEdmProvider(InputStream metadataXml,
boolean validate)
Creates and returns an edm provider.
|
Modifier and Type | Method and Description |
---|---|
static byte[] |
EntityProvider.readBinary(InputStream content)
|
byte[] |
EntityProvider.EntityProviderInterface.readBinary(InputStream content)
|
static ODataDeltaFeed |
EntityProvider.readDeltaFeed(String contentType,
EdmEntitySet entitySet,
InputStream content,
EntityProviderReadProperties properties)
Read (de-serialize) a delta data feed from
content (as InputStream ) in specified format
(given as contentType ) based on entity data model (given as EdmEntitySet ) and
provide this data as ODataEntry . |
ODataDeltaFeed |
EntityProvider.EntityProviderInterface.readDeltaFeed(String contentType,
EdmEntitySet entitySet,
InputStream content,
EntityProviderReadProperties properties)
Read (de-serialize) a delta data feed from
content (as InputStream ) in specified format
(given as contentType )
based on entity data model (given as EdmEntitySet ) and provide this data as
ODataDeltaFeed . |
static ODataEntry |
EntityProvider.readEntry(String contentType,
EdmEntitySet entitySet,
InputStream content,
EntityProviderReadProperties properties)
Read (de-serialize) data from
content (as InputStream ) in specified format (given as
contentType )
based on entity data model (given as EdmEntitySet ) and provide this data as ODataEntry
. |
ODataEntry |
EntityProvider.EntityProviderInterface.readEntry(String contentType,
EdmEntitySet entitySet,
InputStream content,
EntityProviderReadProperties properties)
Reads (de-serializes) data from
content (as InputStream )
in specified format (given as contentType ) based on
entity data model (given as EdmEntitySet )
and provides this data as ODataEntry . |
static ODataErrorContext |
EntityProvider.readErrorDocument(InputStream errorDocument,
String contentType)
Read (de-serialize) data from error document as
InputStream and provide according ODataErrorContext
. |
ODataErrorContext |
EntityProvider.EntityProviderInterface.readErrorDocument(InputStream errorDocument,
String contentType)
Read (de-serialize) data from error document as
InputStream and provide according
ODataErrorContext . |
static ODataFeed |
EntityProvider.readFeed(String contentType,
EdmEntitySet entitySet,
InputStream content,
EntityProviderReadProperties properties)
Read (de-serialize) a data feed from
content (as InputStream ) in specified format (given as
contentType )
based on entity data model (given as EdmEntitySet ) and provide this data as ODataEntry
. |
ODataFeed |
EntityProvider.EntityProviderInterface.readFeed(String contentType,
EdmEntitySet entitySet,
InputStream content,
EntityProviderReadProperties properties)
Read (de-serialize) a data feed from
content (as InputStream ) in specified format (given as
contentType )
based on entity data model (given as EdmEntitySet ) and provide this data as
ODataFeed . |
static Object |
EntityProvider.readFunctionImport(String contentType,
EdmFunctionImport functionImport,
InputStream content,
EntityProviderReadProperties properties)
Reads (de-serializes) function-import data from
content (as InputStream ) in specified format
(given as contentType ) based on entity data model (given as EdmFunctionImport )
and provide this data as Object . |
Object |
EntityProvider.EntityProviderInterface.readFunctionImport(String contentType,
EdmFunctionImport functionImport,
InputStream content,
EntityProviderReadProperties properties)
Reads (de-serializes) function-import data from
content (as InputStream ) in specified format
(given as contentType ) based on entity data model (given as EdmFunctionImport )
and provide this data as Object . |
static String |
EntityProvider.readLink(String contentType,
EdmEntitySet entitySet,
InputStream content)
Read (de-serialize) a link from
content (as InputStream ) in specified format (given as
contentType )
based on entity data model (given as EdmEntitySet ) and provide the link as String . |
String |
EntityProvider.EntityProviderInterface.readLink(String contentType,
EdmEntitySet entitySet,
InputStream content)
Read (de-serialize) a link from
content (as InputStream ) in specified format (given as
contentType )
based on entity data model (given as EdmEntitySet ) and provide the link as String . |
static List<String> |
EntityProvider.readLinks(String contentType,
EdmEntitySet entitySet,
InputStream content)
Read (de-serialize) a link collection from
content (as InputStream )
in specified format (given as contentType ) based on entity data model
(given as EdmEntitySet ) and provide the links as List of Strings. |
List<String> |
EntityProvider.EntityProviderInterface.readLinks(String contentType,
EdmEntitySet entitySet,
InputStream content)
Read (de-serialize) all links from
content (as InputStream )
in specified format (given as contentType ) based on entity data model
(given as EdmEntitySet ) and provide the link as List of Strings. |
static Edm |
EntityProvider.readMetadata(InputStream metadataXml,
boolean validate)
|
Edm |
EntityProvider.EntityProviderInterface.readMetadata(InputStream inputStream,
boolean validate)
|
static Map<String,Object> |
EntityProvider.readProperty(String contentType,
EdmProperty edmProperty,
InputStream content,
EntityProviderReadProperties properties)
Read (de-serialize) properties from
content (as InputStream ) in specified format (given as
contentType )
based on entity data model (given as EdmProperty ) and provide this data as Map which
contains
the read data in form of property name to property value mapping. |
Map<String,Object> |
EntityProvider.EntityProviderInterface.readProperty(String contentType,
EdmProperty edmProperty,
InputStream content,
EntityProviderReadProperties properties)
Read (de-serialize) properties from
content (as InputStream ) in specified format (given as
contentType )
based on entity data model (given as EdmProperty ) and provide this data as Map which
contains
the read data in form of property name to property value mapping. |
static Object |
EntityProvider.readPropertyValue(EdmProperty edmProperty,
InputStream content)
Read (de-serialize) a property value from
content (as InputStream ) in format
text/plain
based on entity data model (given as EdmProperty ) and provide this data as Object . |
static Object |
EntityProvider.readPropertyValue(EdmProperty edmProperty,
InputStream content,
Class<?> typeMapping)
Read (de-serialize) a property value from
content (as InputStream ) in format
text/plain
based on entity data model (given as EdmProperty ) and provide this data as Object . |
Object |
EntityProvider.EntityProviderInterface.readPropertyValue(EdmProperty edmProperty,
InputStream content,
Class<?> typeMapping)
Read (de-serialize) a property value from
content (as InputStream ) in format
text/plain
based on entity data model (given as EdmProperty ) and provide this data as Object . |
static ServiceDocument |
EntityProvider.readServiceDocument(InputStream serviceDocument,
String contentType)
Read (de-serialize) data from service document
inputStream (as InputStream ) and provide
ServiceDocument as ServiceDocument |
ServiceDocument |
EntityProvider.EntityProviderInterface.readServiceDocument(InputStream serviceDocument,
String contentType)
Read (de-serialize) data from service document
inputStream (as InputStream ) and provide
ServiceDocument as ServiceDocument |
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.writeFeed(String contentType,
EdmEntitySet entitySet,
List<Map<String,Object>> data,
EntityProviderWriteProperties properties)
|
ODataResponse |
EntityProvider.EntityProviderInterface.writeFeed(String contentType,
EdmEntitySet entitySet,
List<Map<String,Object>> data,
EntityProviderWriteProperties properties)
|
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(DataServices serviceMetadata,
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(DataServices serviceMetadata,
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.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 . |
Modifier and Type | Method and Description |
---|---|
Map<String,Object> |
WriteCallbackContext.extractKeyFromEntryData() |
Modifier and Type | Method and Description |
---|---|
static EdmProvider |
RuntimeDelegate.createEdmProvider(InputStream metadataXml,
boolean validate)
Creates and returns an edm provider.
|
protected abstract EdmProvider |
RuntimeDelegate.RuntimeDelegateInstance.createEdmProvider(InputStream metadataXml,
boolean validate) |
Modifier and Type | Method and Description |
---|---|
List<EdmEntitySetInfo> |
ServiceDocument.getEntitySetsInfo()
Get the list of the EntitySets
|
Modifier and Type | Method and Description |
---|---|
abstract ContentTypeBasedDeserializer |
ODataClient.createDeserializer(String contentType)
Creates a new deserializer object for reading content in the specified format.
|
abstract ContentTypeBasedSerializer |
ODataClient.createSerializer(String contentType)
Creates a new serializer object for rendering content in the specified format.
|
abstract EdmDataServices |
ODataClient.readMetadata(InputStream content,
boolean validate)
Reads the metadata file and validates it if validate parameter is set to true
|
Modifier and Type | Method and Description |
---|---|
ODataEntry |
ContentTypeBasedDeserializer.readEntry(EdmEntitySet entitySet,
EntityStream content)
Returns an ODataEntry
|
ODataErrorContext |
ContentTypeBasedDeserializer.readErrorDocument(InputStream errorDocument)
Read (de-serialize) data from error document as
InputStream and provide according
ODataErrorContext . |
ODataFeed |
ContentTypeBasedDeserializer.readFeed(EdmEntitySet entitySet,
EntityStream content)
Returns an ODataFeed
|
Object |
ContentTypeBasedDeserializer.readFunctionImport(EdmFunctionImport functionImport,
EntityStream content)
Returns an object
|
EdmDataServices |
DeserializerMetadataProviderInterface.readMetadata(InputStream content,
boolean validate)
|
ODataResponse |
ContentTypeBasedSerializer.writeEntry(EdmEntitySet entitySet,
Entity data)
Returns an OData Response for a given entry
|
ODataResponse |
ContentTypeBasedSerializer.writeFeed(EdmEntitySet entitySet,
EntityCollection data)
Returns an OData Response for a given feed
|
Modifier and Type | Method and Description |
---|---|
ContentTypeBasedDeserializer |
ODataClientImpl.createDeserializer(String contentType) |
ContentTypeBasedSerializer |
ODataClientImpl.createSerializer(String contentType) |
EdmDataServices |
ODataClientImpl.readMetadata(InputStream content,
boolean validate) |
Modifier and Type | Method and Description |
---|---|
ODataEntry |
JsonSerializerDeserializer.readEntry(EdmEntitySet entitySet,
EntityStream content) |
ODataEntry |
AtomSerializerDeserializer.readEntry(EdmEntitySet entitySet,
EntityStream content) |
ODataErrorContext |
JsonSerializerDeserializer.readErrorDocument(InputStream errorDocument) |
ODataErrorContext |
AtomSerializerDeserializer.readErrorDocument(InputStream errorDocument) |
ODataFeed |
JsonSerializerDeserializer.readFeed(EdmEntitySet entitySet,
EntityStream content) |
ODataFeed |
AtomSerializerDeserializer.readFeed(EdmEntitySet entitySet,
EntityStream content) |
Object |
JsonSerializerDeserializer.readFunctionImport(EdmFunctionImport functionImport,
EntityStream content) |
Object |
AtomSerializerDeserializer.readFunctionImport(EdmFunctionImport functionImport,
EntityStream content) |
ODataResponse |
JsonSerializerDeserializer.writeEntry(EdmEntitySet entitySet,
Entity data) |
ODataResponse |
AtomSerializerDeserializer.writeEntry(EdmEntitySet entitySet,
Entity data) |
ODataResponse |
JsonSerializerDeserializer.writeFeed(EdmEntitySet entitySet,
EntityCollection data) |
ODataResponse |
AtomSerializerDeserializer.writeFeed(EdmEntitySet entitySet,
EntityCollection data) |
Constructor and Description |
---|
AtomSerializerDeserializer() |
AtomSerializerDeserializer(org.apache.olingo.odata2.core.commons.ContentType.ODataFormat odataFormat) |
Modifier and Type | Method and Description |
---|---|
protected void |
JsonPropertyDeserializer.readAndCheckTypeInfo(com.google.gson.stream.JsonReader reader,
String expectedTypeName) |
Object |
XmlEntityDeserializer.readCollection(org.apache.olingo.odata2.core.ep.aggregator.EntityPropertyInfo info,
EntityStream entityStream) |
List<?> |
JsonEntityDeserializer.readCollection(org.apache.olingo.odata2.core.ep.aggregator.EntityPropertyInfo info,
EntityStream entityStream) |
List<?> |
JsonPropertyDeserializer.readCollection(com.google.gson.stream.JsonReader reader,
org.apache.olingo.odata2.core.ep.aggregator.EntityPropertyInfo propertyInfo,
DeserializerProperties readProperties)
This method reads through a collection of entities and deserializes each entry
|
List<Object> |
XmlPropertyDeserializer.readCollection(XMLStreamReader reader,
org.apache.olingo.odata2.core.ep.aggregator.EntityPropertyInfo info,
DeserializerProperties properties)
Deserializes a collection of entities
|
ODataDeltaFeed |
JsonEntityDeserializer.readDeltaFeed(EdmEntitySet entitySet,
EntityStream entityStream)
Returns an ODataDeltaFeed deserializing EntityStream
|
ODataEntry |
XmlEntityDeserializer.readEntry(EdmEntitySet entitySet,
EntityStream entity)
Returns an ODataEntry deserializing EntityStream
|
ODataEntry |
JsonEntityDeserializer.readEntry(EdmEntitySet entitySet,
EntityStream entityStream)
Returns an ODataEntry deserializing EntityStream
|
ODataEntry |
XmlEntryDeserializer.readEntry(XMLStreamReader reader,
org.apache.olingo.odata2.core.ep.aggregator.EntityInfoAggregator eia,
DeserializerProperties readProperties,
boolean isInline)
Deserializes payload entry
|
ODataErrorContext |
XmlErrorDocumentDeserializer.readError(InputStream errorDocument)
Deserialize / read OData error document in ODataErrorContext.
|
ODataErrorContext |
JsonErrorDocumentDeserializer.readError(InputStream errorDocument)
Deserialize / read OData error document in ODataErrorContext.
|
ODataDeltaFeed |
XmlEntityDeserializer.readFeed(EdmEntitySet entitySet,
EntityStream entity)
Returns an ODataDeltaFeed deserializing EntityStream
|
ODataFeed |
JsonEntityDeserializer.readFeed(EdmEntitySet entitySet,
EntityStream entityStream)
Returns an ODataFeed deserializing EntityStream
|
ODataDeltaFeed |
XmlFeedDeserializer.readFeed(XMLStreamReader reader,
org.apache.olingo.odata2.core.ep.aggregator.EntityInfoAggregator eia,
DeserializerProperties readProperties) |
org.apache.olingo.odata2.core.ep.feed.JsonFeedEntry |
JsonEntryDeserializer.readFeedEntry()
Returns Feed deserializing feed entry
|
ODataDeltaFeed |
JsonFeedDeserializer.readFeedStandalone() |
protected static void |
JsonFeedDeserializer.readInlineCount(com.google.gson.stream.JsonReader reader,
org.apache.olingo.odata2.core.ep.feed.FeedMetadataImpl feedMetadata) |
protected ODataFeed |
JsonFeedDeserializer.readInlineFeedStandalone() |
EdmDataServices |
XmlMetadataDeserializer.readMetadata(InputStream content,
boolean validate) |
Map<String,Object> |
XmlEntityDeserializer.readProperty(org.apache.olingo.odata2.core.ep.aggregator.EntityPropertyInfo propertyInfo,
EntityStream entityStream) |
Map<String,Object> |
JsonEntityDeserializer.readProperty(org.apache.olingo.odata2.core.ep.aggregator.EntityPropertyInfo propertyInfo,
EntityStream entityStream) |
Map<String,Object> |
XmlPropertyDeserializer.readProperty(XMLStreamReader reader,
EdmProperty property,
DeserializerProperties readProperties)
Read property of every entry in a payload
|
Map<String,Object> |
XmlPropertyDeserializer.readProperty(XMLStreamReader reader,
org.apache.olingo.odata2.core.ep.aggregator.EntityPropertyInfo propertyInfo,
DeserializerProperties readProperties)
Read property of every entry in a payload
|
Map<String,Object> |
JsonPropertyDeserializer.readPropertyStandalone(com.google.gson.stream.JsonReader reader,
EdmProperty edmProperty,
DeserializerProperties readProperties)
Deserializes Property
|
Map<String,Object> |
JsonPropertyDeserializer.readPropertyStandalone(com.google.gson.stream.JsonReader reader,
org.apache.olingo.odata2.core.ep.aggregator.EntityPropertyInfo propertyInfo,
DeserializerProperties readProperties)
Deserializes Property
|
protected Object |
JsonPropertyDeserializer.readPropertyValue(com.google.gson.stream.JsonReader reader,
org.apache.olingo.odata2.core.ep.aggregator.EntityPropertyInfo entityPropertyInfo,
Object typeMapping,
DeserializerProperties readProperties) |
ODataEntry |
JsonEntryDeserializer.readSingleEntry()
Returns ODataEntry deserializing a single entry
|
protected Object |
XmlPropertyDeserializer.readStartedElement(XMLStreamReader reader,
String name,
org.apache.olingo.odata2.core.ep.aggregator.EntityPropertyInfo propertyInfo,
org.apache.olingo.odata2.core.ep.aggregator.EntityTypeMapping typeMappings,
DeserializerProperties readProperties) |
protected ODataFeed |
JsonFeedDeserializer.readStartedInlineFeed(String name) |
Constructor and Description |
---|
XmlEntityDeserializer() |
Modifier and Type | Method and Description |
---|---|
void |
JsonEntryEntitySerializer.append(Writer writer,
org.apache.olingo.odata2.core.ep.aggregator.EntityInfoAggregator entityInfo,
Entity data)
This serializes the json payload entry
|
void |
JsonPropertyEntitySerializer.append(Writer writer,
org.apache.olingo.odata2.core.ep.aggregator.EntityPropertyInfo propertyInfo,
Object value)
Serializes a property of every entry in json payload
|
void |
AtomEntryEntitySerializer.append(XMLStreamWriter writer,
org.apache.olingo.odata2.core.ep.aggregator.EntityInfoAggregator eia,
Entity data,
boolean isRootElement,
boolean isFeedPart)
This serializes the xml payload entry
|
void |
AtomFeedSerializer.append(XMLStreamWriter writer,
org.apache.olingo.odata2.core.ep.aggregator.EntityInfoAggregator eia,
EntityCollection data,
boolean isInline)
This serializes the xml payload feed
|
void |
XmlPropertyEntitySerializer.append(XMLStreamWriter writer,
String name,
org.apache.olingo.odata2.core.ep.aggregator.EntityPropertyInfo propertyInfo,
Object value)
Append
Object value based on EntityPropertyInfo to XMLStreamWriter in an
already existing XML structure inside the d namespace. |
void |
JsonFeedEntitySerializer.appendAsArray(Writer writer,
org.apache.olingo.odata2.core.ep.aggregator.EntityInfoAggregator entityInfo,
EntityCollection data)
This serializes the json payload feed
|
void |
JsonFeedEntitySerializer.appendAsObject(Writer writer,
org.apache.olingo.odata2.core.ep.aggregator.EntityInfoAggregator entityInfo,
EntityCollection data)
This serializes the json payload feed
|
void |
XmlPropertyEntitySerializer.appendCustomProperty(XMLStreamWriter writer,
String name,
org.apache.olingo.odata2.core.ep.aggregator.EntityPropertyInfo propertyInfo,
Object value)
Serializes custom properties
|
protected static void |
JsonPropertyEntitySerializer.appendPropertyValue(org.apache.olingo.odata2.core.ep.util.JsonStreamWriter jsonStreamWriter,
org.apache.olingo.odata2.core.ep.aggregator.EntityPropertyInfo propertyInfo,
Object value,
boolean validatingFacets) |
Copyright © 2013-2019 The Apache Software Foundation. All Rights Reserved.