Interface GetEntityUriInfo
- All Known Subinterfaces:
UriInfo
- All Known Implementing Classes:
UriInfoImpl
public interface GetEntityUriInfo
Access to the parts of the request URI that are relevant for GET requests
of a single entity.
-
Method Summary
Modifier and TypeMethodDescriptionGets 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.Gets the target entity container.Gets the value of the $expand system query option as a list of lists of navigation-property segments, or an empty list if not used.Gets the value of the $filter system query option as root object of the expression tree built during URI parsing.Gets the value of the $format system query option.Gets the function import.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.Gets the key predicates used to select a single entity out of the start entity set, or an empty list if not used.Gets the navigation segments, or an empty list if no navigation has been used.Gets the value of the $select system query option as a list of select items, or an empty list if not used.Gets the start entity set - identical to the target entity set if no navigation has been used.Gets the target entity set after navigation.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 fromgetNavigationSegments()or, if no navigation has been used, to the result ofgetKeyPredicates().Gets the target entity type of the request.
-
Method Details
-
getEntityContainer
EdmEntityContainer getEntityContainer()Gets the target entity container.- Returns:
EdmEntityContainerthe 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:
EdmEntitySettarget entity set
-
getFunctionImport
EdmFunctionImport getFunctionImport()Gets the function import.- Returns:
EdmFunctionImportthe function import
-
getTargetType
EdmType getTargetType()Gets the target entity type of the request.- Returns:
EdmTypethe 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:
-
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 fromgetNavigationSegments()or, if no navigation has been used, to the result ofgetKeyPredicates().- Returns:
- List of
KeyPredicate - See Also:
-
getFormat
String getFormat()Gets the value of the $format system query option.- Returns:
- the format (as set as
$formatquery parameter) or null
-
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
-
getExpand
List<ArrayList<NavigationPropertySegment>> getExpand()Gets the value of the $expand system query option as a list of lists of navigation-property segments, or an empty list if not used.- Returns:
- List of a list of
NavigationPropertySegmentto be expanded
-
getSelect
List<SelectItem> getSelect()Gets the value of the $select system query option as a list of select items, or an empty list if not used.- Returns:
- List of
SelectItemto be selected
-
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
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
-