com.sap.cloud.sdk.service.prov.v4.request.ODataHandleFunctionRequestContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of odatav4-prov Show documentation
Show all versions of odatav4-prov Show documentation
SAP Cloud Platform SDK for service development
/*******************************************************************************
* (c) 201X SAP SE or an SAP affiliate company. All rights reserved.
******************************************************************************/
package com.sap.cloud.sdk.service.prov.v4.request;
import java.util.List;
import org.apache.olingo.server.api.ODataApplicationException;
import org.apache.olingo.server.api.ODataRequest;
import org.apache.olingo.server.api.uri.UriInfo;
import org.apache.olingo.server.api.uri.UriParameter;
public abstract class ODataHandleFunctionRequestContext extends ODataRequestContext {
protected ODataHandleFunctionRequestContext(ODataRequest request, UriInfo uriInfo) throws ODataApplicationException {
super(request,uriInfo);
}
public abstract List getKeyPredicates();
public abstract List getParameters();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy