Package org.apache.olingo.odata2.api.edm
Interface EdmFunctionImport
-
- All Superinterfaces:
EdmAnnotatable,EdmMappable,EdmNamed
public interface EdmFunctionImport extends EdmMappable, EdmNamed, EdmAnnotatable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EdmEntityContainergetEntityContainer()Get the entity container the function import is contained inEdmEntitySetgetEntitySet()Get the edm entity setStringgetHttpMethod()Get the HTTP MethodEdmParametergetParameter(String name)Get the parameter by nameCollection<String>getParameterNames()Get all parameter namesEdmTypedgetReturnType()-
Methods inherited from interface org.apache.olingo.odata2.api.edm.EdmAnnotatable
getAnnotations
-
Methods inherited from interface org.apache.olingo.odata2.api.edm.EdmMappable
getMapping
-
-
-
-
Method Detail
-
getParameter
EdmParameter getParameter(String name) throws EdmException
Get the parameter by name- Parameters:
name-- Returns:
EdmParameter- Throws:
EdmException
-
getParameterNames
Collection<String> getParameterNames() throws EdmException
Get all parameter names- Returns:
- collection of parameter names of type Collection
- Throws:
EdmException
-
getEntitySet
EdmEntitySet getEntitySet() throws EdmException
Get the edm entity set- Returns:
EdmEntitySet- Throws:
EdmException
-
getHttpMethod
String getHttpMethod() throws EdmException
Get the HTTP Method- Returns:
- HTTP Method as String
- Throws:
EdmException
-
getReturnType
EdmTyped getReturnType() throws EdmException
- Returns:
EdmTyped- Throws:
EdmException
-
getEntityContainer
EdmEntityContainer getEntityContainer() throws EdmException
Get the entity container the function import is contained in- Returns:
EdmEntityContainer- Throws:
EdmException
-
-