All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.xcase.intapp.advanced.transputs.InvokeOperationRequest Maven / Gradle / Ivy

package com.xcase.intapp.advanced.transputs;

import java.util.List;
import org.apache.http.NameValuePair;

public interface InvokeOperationRequest extends AdvancedRequest {

	String getAPIURL();
	
	String getEntityString();
	
	String getMethod();
	
	String getOperationPath();
	
	List getParameters();
	
	int getSuccessResponseCode();
	
	void setAPIURL(String apiURL);
	
	void setEntityString(String entityString);
	
	void setMethod(String method);

	void setOperationPath(String operationPath);

	void setParameters(List parameters);
	
	void setSuccessResponseCode(int successResponseCode);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy