| Package | Description |
|---|---|
| org.apache.olingo.netty.server.api |
Netty handler for Olingo Server API
|
| org.apache.olingo.netty.server.core | |
| org.apache.olingo.server.api |
Olingo Server API
|
| org.apache.olingo.server.api.processor |
Olingo Processors
|
| org.apache.olingo.server.api.serializer |
Olingo Server API - Serializer
|
| org.apache.olingo.server.core | |
| org.apache.olingo.server.core.deserializer.json | |
| org.apache.olingo.server.core.serializer.json | |
| org.apache.olingo.server.core.serializer.xml |
| Modifier and Type | Method and Description |
|---|---|
abstract ODataNettyHandler |
ODataNetty.createNettyHandler(ServiceMetadata serviceMetadata)
Creates a new ODataNettyHandler for handling OData requests in an HTTP context.
|
| Modifier and Type | Method and Description |
|---|---|
ServiceMetadata |
ODataNettyImpl.createServiceMetadata(CsdlEdmProvider edmProvider,
List<EdmxReference> references) |
ServiceMetadata |
ODataNettyImpl.createServiceMetadata(CsdlEdmProvider edmProvider,
List<EdmxReference> references,
ServiceMetadataETagSupport serviceMetadataETagSupport) |
| Modifier and Type | Method and Description |
|---|---|
ODataDeserializer |
ODataNettyImpl.createDeserializer(ContentType contentType,
ServiceMetadata metadata) |
ODataDeserializer |
ODataNettyImpl.createDeserializer(ContentType contentType,
ServiceMetadata metadata,
List<String> versions) |
ODataHttpHandler |
ODataNettyImpl.createHandler(ServiceMetadata serviceMetadata) |
ODataNettyHandler |
ODataNettyImpl.createNettyHandler(ServiceMetadata serviceMetadata) |
ODataHandler |
ODataNettyImpl.createRawHandler(ServiceMetadata serviceMetadata) |
| Constructor and Description |
|---|
ODataNettyHandlerImpl(OData odata,
ServiceMetadata serviceMetadata) |
| Modifier and Type | Method and Description |
|---|---|
abstract ServiceMetadata |
OData.createServiceMetadata(CsdlEdmProvider edmProvider,
List<EdmxReference> references)
Creates a metadata object for this service.
|
abstract ServiceMetadata |
OData.createServiceMetadata(CsdlEdmProvider edmProvider,
List<EdmxReference> references,
ServiceMetadataETagSupport serviceMetadataETagSupport)
Creates a metadata object for this service.
|
| Modifier and Type | Method and Description |
|---|---|
abstract ODataDeserializer |
OData.createDeserializer(ContentType contentType,
ServiceMetadata metadata)
Creates a new deserializer object for reading content in the specified format.
|
abstract ODataDeserializer |
OData.createDeserializer(ContentType contentType,
ServiceMetadata metadata,
List<String> versions)
Creates a new deserializer object for reading content in the specified format.
|
abstract ODataHttpHandler |
OData.createHandler(ServiceMetadata serviceMetadata)
Creates a new ODataHttpHandler for handling OData requests in an HTTP context.
|
abstract ODataHandler |
OData.createRawHandler(ServiceMetadata serviceMetadata)
Creates a new ODataHandler for handling OData requests.
|
| Modifier and Type | Method and Description |
|---|---|
void |
Processor.init(OData odata,
ServiceMetadata serviceMetadata)
Initializes the processor for each HTTP request - response cycle.
|
void |
DefaultProcessor.init(OData odata,
ServiceMetadata serviceMetadata) |
| Modifier and Type | Method and Description |
|---|---|
SerializerResult |
ODataSerializer.complex(ServiceMetadata metadata,
EdmComplexType type,
Property property,
ComplexSerializerOptions options)
Writes complex-type instance data into an InputStream.
|
SerializerResult |
ODataSerializer.complexCollection(ServiceMetadata metadata,
EdmComplexType type,
Property property,
ComplexSerializerOptions options)
Writes data of a collection of complex-type instances into an InputStream.
|
SerializerResult |
ODataSerializer.entity(ServiceMetadata metadata,
EdmEntityType entityType,
Entity entity,
EntitySerializerOptions options)
Writes entity data into an InputStream.
|
SerializerResult |
EdmAssistedSerializer.entityCollection(ServiceMetadata metadata,
EdmEntityType referencedEntityType,
AbstractEntityCollection entityCollection,
EdmAssistedSerializerOptions options)
Writes entity-collection data into an InputStream.
|
SerializerResult |
ODataSerializer.entityCollection(ServiceMetadata metadata,
EdmEntityType entityType,
AbstractEntityCollection entitySet,
EntityCollectionSerializerOptions options)
Writes entity-collection data into an InputStream.
|
SerializerResult |
EdmDeltaSerializer.entityCollection(ServiceMetadata metadata,
EdmEntityType referencedEntityType,
Delta delta,
EntityCollectionSerializerOptions options)
Writes collection of delta-response into an InputStream.
|
SerializerStreamResult |
ODataSerializer.entityCollectionStreamed(ServiceMetadata metadata,
EdmEntityType entityType,
AbstractEntityCollectionObject entities,
EntityCollectionSerializerOptions options)
Writes entity-collection data into an InputStream.
|
SerializerResult |
ODataSerializer.metadataDocument(ServiceMetadata serviceMetadata)
Writes the metadata document into an InputStream.
|
SerializerResult |
ODataSerializer.primitive(ServiceMetadata metadata,
EdmPrimitiveType type,
Property property,
PrimitiveSerializerOptions options)
Writes primitive-type instance data into an InputStream.
|
SerializerResult |
ODataSerializer.primitiveCollection(ServiceMetadata metadata,
EdmPrimitiveType type,
Property property,
PrimitiveSerializerOptions options)
Writes data of a collection of primitive-type instances into an InputStream.
|
SerializerResult |
ODataSerializer.reference(ServiceMetadata metadata,
EdmEntitySet edmEntitySet,
Entity entity,
ReferenceSerializerOptions options)
Writes a single entity reference into an InputStream.
|
SerializerResult |
ODataSerializer.referenceCollection(ServiceMetadata metadata,
EdmEntitySet edmEntitySet,
AbstractEntityCollection entityCollection,
ReferenceCollectionSerializerOptions options)
Writes entity-collection references into an InputStream.
|
SerializerResult |
ODataSerializer.serviceDocument(ServiceMetadata serviceMetadata,
String serviceRoot)
Writes the service document into an InputStream.
|
| Modifier and Type | Class and Description |
|---|---|
class |
ServiceMetadataImpl |
| Modifier and Type | Method and Description |
|---|---|
ServiceMetadata |
ODataImpl.createServiceMetadata(CsdlEdmProvider edmProvider,
List<EdmxReference> references) |
ServiceMetadata |
ODataImpl.createServiceMetadata(CsdlEdmProvider edmProvider,
List<EdmxReference> references,
ServiceMetadataETagSupport serviceMetadataETagSupport) |
| Modifier and Type | Method and Description |
|---|---|
ODataDeserializer |
ODataImpl.createDeserializer(ContentType contentType,
ServiceMetadata metadata) |
ODataDeserializer |
ODataImpl.createDeserializer(ContentType contentType,
ServiceMetadata metadata,
List<String> versions) |
ODataHttpHandler |
ODataImpl.createHandler(ServiceMetadata serviceMetadata) |
ODataHandler |
ODataImpl.createRawHandler(ServiceMetadata serviceMetadata) |
void |
DefaultRedirectProcessor.init(OData odata,
ServiceMetadata serviceMetadata) |
static ODataWritableContent.ODataWritableContentBuilder |
ODataWritableContent.with(AbstractEntityCollectionObject entitySet,
EdmEntityType entityType,
ODataSerializer serializer,
ServiceMetadata metadata,
EntityCollectionSerializerOptions options) |
| Constructor and Description |
|---|
ODataHandlerImpl(OData odata,
ServiceMetadata serviceMetadata,
ServerCoreDebugger debugger) |
ODataHttpHandlerImpl(OData odata,
ServiceMetadata serviceMetadata) |
ODataWritableContentBuilder(AbstractEntityCollectionObject entities,
EdmEntityType entityType,
ODataSerializer serializer,
ServiceMetadata metadata,
EntityCollectionSerializerOptions options) |
| Constructor and Description |
|---|
ODataJsonDeserializer(ContentType contentType,
ServiceMetadata serviceMetadata) |
ODataJsonDeserializer(ContentType contentType,
ServiceMetadata serviceMetadata,
IConstants constants) |
| Modifier and Type | Method and Description |
|---|---|
SerializerResult |
ODataJsonSerializer.complex(ServiceMetadata metadata,
EdmComplexType type,
Property property,
ComplexSerializerOptions options) |
SerializerResult |
ODataJsonSerializer.complexCollection(ServiceMetadata metadata,
EdmComplexType type,
Property property,
ComplexSerializerOptions options) |
SerializerResult |
EdmAssistedJsonSerializer.entity(ServiceMetadata metadata,
EdmEntityType entityType,
Entity entity,
EdmAssistedSerializerOptions options) |
SerializerResult |
ODataJsonSerializer.entity(ServiceMetadata metadata,
EdmEntityType entityType,
Entity entity,
EntitySerializerOptions options) |
SerializerResult |
EdmAssistedJsonSerializer.entityCollection(ServiceMetadata metadata,
EdmEntityType entityType,
AbstractEntityCollection entityCollection,
EdmAssistedSerializerOptions options) |
SerializerResult |
ODataJsonSerializer.entityCollection(ServiceMetadata metadata,
EdmEntityType entityType,
AbstractEntityCollection entitySet,
EntityCollectionSerializerOptions options) |
SerializerResult |
JsonDeltaSerializerWithNavigations.entityCollection(ServiceMetadata metadata,
EdmEntityType referencedEntityType,
Delta delta,
EntityCollectionSerializerOptions options) |
SerializerResult |
JsonDeltaSerializer.entityCollection(ServiceMetadata metadata,
EdmEntityType referencedEntityType,
Delta delta,
EntityCollectionSerializerOptions options) |
void |
ODataJsonSerializer.entityCollectionIntoStream(ServiceMetadata metadata,
EdmEntityType entityType,
AbstractEntityCollectionObject entitySet,
EntityCollectionSerializerOptions options,
OutputStream outputStream) |
SerializerStreamResult |
ODataJsonSerializer.entityCollectionStreamed(ServiceMetadata metadata,
EdmEntityType entityType,
AbstractEntityCollectionObject entities,
EntityCollectionSerializerOptions options) |
SerializerResult |
ODataJsonSerializer.metadataDocument(ServiceMetadata serviceMetadata) |
SerializerResult |
ODataJsonSerializer.primitive(ServiceMetadata metadata,
EdmPrimitiveType type,
Property property,
PrimitiveSerializerOptions options) |
SerializerResult |
ODataJsonSerializer.primitiveCollection(ServiceMetadata metadata,
EdmPrimitiveType type,
Property property,
PrimitiveSerializerOptions options) |
SerializerResult |
ODataJsonSerializer.reference(ServiceMetadata metadata,
EdmEntitySet edmEntitySet,
Entity entity,
ReferenceSerializerOptions options) |
SerializerResult |
ODataJsonSerializer.referenceCollection(ServiceMetadata metadata,
EdmEntitySet edmEntitySet,
AbstractEntityCollection entityCollection,
ReferenceCollectionSerializerOptions options) |
protected EdmComplexType |
ODataJsonSerializer.resolveComplexType(ServiceMetadata metadata,
EdmComplexType baseType,
String derivedTypeName) |
protected EdmComplexType |
JsonDeltaSerializerWithNavigations.resolveComplexType(ServiceMetadata metadata,
EdmComplexType baseType,
String derivedTypeName) |
protected EdmComplexType |
JsonDeltaSerializer.resolveComplexType(ServiceMetadata metadata,
EdmComplexType baseType,
String derivedTypeName) |
protected EdmEntityType |
ODataJsonSerializer.resolveEntityType(ServiceMetadata metadata,
EdmEntityType baseType,
String derivedTypeName) |
protected SerializerResult |
EdmAssistedJsonSerializer.serialize(ServiceMetadata metadata,
EdmEntityType entityType,
AbstractODataObject obj,
ContextURL contextURL) |
SerializerResult |
ODataJsonSerializer.serviceDocument(ServiceMetadata metadata,
String serviceRoot) |
void |
JsonDeltaSerializer.writeAddedUpdatedEntity(ServiceMetadata metadata,
EdmEntityType entityType,
Entity entity,
ExpandOption expand,
SelectOption select,
ContextURL url,
boolean onlyReference,
String name,
com.fasterxml.jackson.core.JsonGenerator json) |
void |
JsonDeltaSerializerWithNavigations.writeAddedUpdatedEntity(ServiceMetadata metadata,
EdmEntityType entityType,
Entity entity,
ExpandOption expand,
SelectOption select,
ContextURL url,
boolean onlyReference,
String name,
com.fasterxml.jackson.core.JsonGenerator json,
boolean isFullRepresentation) |
protected void |
JsonDeltaSerializerWithNavigations.writeComplexValue(ServiceMetadata metadata,
EdmComplexType type,
List<Property> properties,
Set<List<String>> selectedPaths,
com.fasterxml.jackson.core.JsonGenerator json) |
protected void |
JsonDeltaSerializer.writeComplexValue(ServiceMetadata metadata,
EdmComplexType type,
List<Property> properties,
Set<List<String>> selectedPaths,
com.fasterxml.jackson.core.JsonGenerator json) |
protected void |
ODataJsonSerializer.writeComplexValue(ServiceMetadata metadata,
EdmComplexType type,
List<Property> properties,
Set<List<String>> selectedPaths,
com.fasterxml.jackson.core.JsonGenerator json,
Set<List<String>> expandedPaths,
Linked linked,
ExpandOption expand,
String complexPropName) |
protected void |
ODataJsonSerializer.writeEntity(ServiceMetadata metadata,
EdmEntityType entityType,
Entity entity,
ContextURL contextURL,
ExpandOption expand,
Integer toDepth,
SelectOption select,
boolean onlyReference,
Set<String> ancestors,
String name,
com.fasterxml.jackson.core.JsonGenerator json) |
protected void |
JsonDeltaSerializerWithNavigations.writeEntitySet(ServiceMetadata metadata,
EdmEntityType entityType,
AbstractEntityCollection entitySet,
ExpandOption expand,
SelectOption select,
boolean onlyReference,
String name,
com.fasterxml.jackson.core.JsonGenerator json,
boolean isFullRepresentation) |
protected void |
ODataJsonSerializer.writeEntitySet(ServiceMetadata metadata,
EdmEntityType entityType,
AbstractEntityCollectionObject entitySet,
ExpandOption expand,
Integer toDepth,
SelectOption select,
boolean onlyReference,
Set<String> ancestors,
String name,
com.fasterxml.jackson.core.JsonGenerator json) |
protected void |
JsonDeltaSerializerWithNavigations.writeEntitySet(ServiceMetadata metadata,
EdmEntityType entityType,
Delta entitySet,
EntityCollectionSerializerOptions options,
com.fasterxml.jackson.core.JsonGenerator json) |
protected void |
JsonDeltaSerializer.writeEntitySet(ServiceMetadata metadata,
EdmEntityType entityType,
Delta entitySet,
EntityCollectionSerializerOptions options,
com.fasterxml.jackson.core.JsonGenerator json) |
protected void |
ODataJsonSerializer.writeExpandedNavigationProperty(ServiceMetadata metadata,
EdmNavigationProperty property,
Link navigationLink,
ExpandOption innerExpand,
Integer toDepth,
SelectOption innerSelect,
CountOption innerCount,
boolean writeOnlyCount,
boolean writeOnlyRef,
Set<String> ancestors,
String name,
com.fasterxml.jackson.core.JsonGenerator json) |
protected void |
JsonDeltaSerializerWithNavigations.writeExpandedNavigationProperty(ServiceMetadata metadata,
EdmNavigationProperty property,
Link navigationLink,
ExpandOption innerExpand,
SelectOption innerSelect,
CountOption innerCount,
boolean writeOnlyCount,
boolean writeOnlyRef,
String name,
com.fasterxml.jackson.core.JsonGenerator json,
boolean isFullRepresentation) |
protected void |
ODataJsonSerializer.writeExpandedStreamProperties(ServiceMetadata metadata,
EdmStructuredType type,
Linked linked,
ExpandOption expand,
Integer toDepth,
Set<String> ancestors,
String name,
com.fasterxml.jackson.core.JsonGenerator json) |
protected void |
ODataJsonSerializer.writeMetadataETag(ServiceMetadata metadata,
com.fasterxml.jackson.core.JsonGenerator json) |
protected void |
ODataJsonSerializer.writeNavigationProperties(ServiceMetadata metadata,
EdmStructuredType type,
Linked linked,
ExpandOption expand,
Integer toDepth,
Set<String> ancestors,
String name,
com.fasterxml.jackson.core.JsonGenerator json) |
protected void |
JsonDeltaSerializerWithNavigations.writeNavigationProperties(ServiceMetadata metadata,
EdmStructuredType type,
Linked linked,
ExpandOption expand,
String name,
com.fasterxml.jackson.core.JsonGenerator json,
boolean isFullRepresentation) |
protected void |
JsonDeltaSerializerWithNavigations.writeProperties(ServiceMetadata metadata,
EdmStructuredType type,
List<Property> properties,
SelectOption select,
com.fasterxml.jackson.core.JsonGenerator json) |
protected void |
JsonDeltaSerializer.writeProperties(ServiceMetadata metadata,
EdmStructuredType type,
List<Property> properties,
SelectOption select,
com.fasterxml.jackson.core.JsonGenerator json) |
protected void |
ODataJsonSerializer.writeProperties(ServiceMetadata metadata,
EdmStructuredType type,
List<Property> properties,
SelectOption select,
com.fasterxml.jackson.core.JsonGenerator json,
Linked linked,
ExpandOption expand) |
protected void |
JsonDeltaSerializerWithNavigations.writeProperty(ServiceMetadata metadata,
EdmProperty edmProperty,
Property property,
Set<List<String>> selectedPaths,
com.fasterxml.jackson.core.JsonGenerator json) |
protected void |
JsonDeltaSerializer.writeProperty(ServiceMetadata metadata,
EdmProperty edmProperty,
Property property,
Set<List<String>> selectedPaths,
com.fasterxml.jackson.core.JsonGenerator json) |
protected void |
ODataJsonSerializer.writeProperty(ServiceMetadata metadata,
EdmProperty edmProperty,
Property property,
Set<List<String>> selectedPaths,
com.fasterxml.jackson.core.JsonGenerator json,
Set<List<String>> expandedPaths,
Linked linked,
ExpandOption expand) |
| Constructor and Description |
|---|
MetadataDocumentJsonSerializer(ServiceMetadata serviceMetadata) |
ServiceDocumentJsonSerializer(ServiceMetadata metadata,
String serviceRoot,
boolean isODataMetadataNone) |
| Constructor and Description |
|---|
MetadataDocumentXmlSerializer(ServiceMetadata serviceMetadata) |
Copyright © 2023. All rights reserved.