org.apache.olingo.odata2.api.uri.info
Interface PutMergePatchUriInfo

All Known Subinterfaces:
UriInfo

public interface PutMergePatchUriInfo

Access to the parts of the request URI that are relevant for PUT, PATCH, or MERGE requests.

Do not implement this interface or derive from class.

Method Summary
 Map<String,String> getCustomQueryOptions()
          Gets the custom query options as Map from option names to their corresponding String values, or an empty list if no custom query options are given in the URI.
 EdmEntityContainer getEntityContainer()
          Gets the target entity container.
 FilterExpression getFilter()
          Gets the value of the $filter system query option as root object of the expression tree built during URI parsing.
 EdmFunctionImport getFunctionImport()
          Gets the function import.
 Map<String,EdmLiteral> getFunctionImportParameters()
          Gets the parameters of a function import as Map from parameter names to their corresponding typed values, or an empty list if no function import is used or no parameters are given in the URI.
 List<KeyPredicate> getKeyPredicates()
          Gets the key predicates used to select a single entity out of the start entity set, or an empty list if not used.
 List<NavigationSegment> getNavigationSegments()
          Gets the navigation segments, or an empty list if no navigation has been used.
 List<EdmProperty> getPropertyPath()
          Gets the path used to select a (simple or complex) property of an entity, or an empty list if no property is accessed.
 EdmEntitySet getStartEntitySet()
          Gets the start entity set - identical to the target entity set if no navigation has been used.
 EdmEntitySet getTargetEntitySet()
          Gets the target entity set after navigation.
 List<KeyPredicate> getTargetKeyPredicates()
          Gets the key predicates used to select a single entity out of the target entity set, or an empty list if not used - identical to the key predicates from the last entry retrieved from getNavigationSegments() or, if no navigation has been used, to the result of getKeyPredicates().
 EdmType getTargetType()
          Gets the target type of the request: an entity type, a simple type, or a complex type.
 

Method Detail

getEntityContainer

EdmEntityContainer getEntityContainer()
Gets the target entity container.

Returns:
EdmEntityContainer the target entity container

getStartEntitySet

EdmEntitySet getStartEntitySet()
Gets the start entity set - identical to the target entity set if no navigation has been used.

Returns:
EdmEntitySet

getTargetEntitySet

EdmEntitySet getTargetEntitySet()
Gets the target entity set after navigation.

Returns:
EdmEntitySet target entity set

getFunctionImport

EdmFunctionImport getFunctionImport()
Gets the function import.

Returns:
EdmFunctionImport the function import

getTargetType

EdmType getTargetType()
Gets the target type of the request: an entity type, a simple type, or a complex type.

Returns:
EdmType the target type

getKeyPredicates

List<KeyPredicate> getKeyPredicates()
Gets the key predicates used to select a single entity out of the start entity set, or an empty list if not used.

Returns:
List of KeyPredicate
See Also:
getStartEntitySet()

getTargetKeyPredicates

List<KeyPredicate> getTargetKeyPredicates()
Gets the key predicates used to select a single entity out of the target entity set, or an empty list if not used - identical to the key predicates from the last entry retrieved from getNavigationSegments() or, if no navigation has been used, to the result of getKeyPredicates().

Returns:
List of KeyPredicate
See Also:
getTargetEntitySet()

getNavigationSegments

List<NavigationSegment> getNavigationSegments()
Gets the navigation segments, or an empty list if no navigation has been used.

Returns:
List of NavigationSegment

getPropertyPath

List<EdmProperty> getPropertyPath()
Gets the path used to select a (simple or complex) property of an entity, or an empty list if no property is accessed.

Returns:
List of EdmProperty

getFilter

FilterExpression getFilter()
Gets the value of the $filter system query option as root object of the expression tree built during URI parsing.

Returns:
the filter expression or null

getFunctionImportParameters

Map<String,EdmLiteral> getFunctionImportParameters()
Gets the parameters of a function import as Map from parameter names to their corresponding typed values, or an empty list if no function import is used or no parameters are given in the URI.

Returns:
Map of <String, EdmLiteral> function import parameters

getCustomQueryOptions

Map<String,String> getCustomQueryOptions()
Gets the custom query options as Map from option names to their corresponding String values, or an empty list if no custom query options are given in the URI.

Returns:
Map of <String, String> custom query options


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