Class PostODataRequestEntityExtractor
- java.lang.Object
-
- de.hybris.platform.odata2services.odata.impl.PostODataRequestEntityExtractor
-
- All Implemented Interfaces:
ODataRequestEntityExtractor
public class PostODataRequestEntityExtractor extends java.lang.Object implements ODataRequestEntityExtractor
-
-
Constructor Summary
Constructors Constructor Description PostODataRequestEntityExtractor()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Stringextract(org.apache.olingo.odata2.api.processor.ODataRequest request)Extracts the entity from theODataRequest.booleanisApplicable(org.apache.olingo.odata2.api.processor.ODataRequest request)Indicates whether this Extractor should be used to extract the entity from the givenODataRequest
-
-
-
Method Detail
-
isApplicable
public boolean isApplicable(org.apache.olingo.odata2.api.processor.ODataRequest request)
Description copied from interface:ODataRequestEntityExtractorIndicates whether this Extractor should be used to extract the entity from the givenODataRequest- Specified by:
isApplicablein interfaceODataRequestEntityExtractor- Parameters:
request- Request to check- Returns:
- true if handler can handle request, else false
-
extract
public java.lang.String extract(org.apache.olingo.odata2.api.processor.ODataRequest request)
Description copied from interface:ODataRequestEntityExtractorExtracts the entity from theODataRequest.- Specified by:
extractin interfaceODataRequestEntityExtractor- Parameters:
request- Use this request to extract the entity- Returns:
- The entity or empty string
-
-