Interface GetFunctionImportUriInfo
- All Known Subinterfaces:
UriInfo
- All Known Implementing Classes:
UriInfoImpl
public interface GetFunctionImportUriInfo
Access to the parts of the request URI that are relevant for requests
of function imports.
-
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 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 $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 value of the $inlinecount system query option.Gets the value of the $select system query option as a list of select items, or an empty list if not used.
-
Method Details
-
getFunctionImport
EdmFunctionImport getFunctionImport()Gets the function import.- Returns:
EdmFunctionImportthe function import
-
getFormat
String getFormat()Gets the value of the $format system query option.- Returns:
- the format (as set as
$formatquery parameter) 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
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
-
getInlineCount
InlineCount getInlineCount()Gets the value of the $inlinecount system query option.- Returns:
InlineCountthe inline count or null
-
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
-
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
-