![JAR search and dependency download from the Maven repository](/logo.png)
com.twilio.sdk.resource.factory.CallFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of twilio-java-sdk Show documentation
Show all versions of twilio-java-sdk Show documentation
Java helper library for Twilio services
package com.twilio.sdk.resource.factory;
import com.twilio.sdk.TwilioRestException;
import com.twilio.sdk.resource.instance.Call;
import org.apache.http.NameValuePair;
import java.util.List;
import java.util.Map;
// TODO: Auto-generated Javadoc
/**
* A factory for creating Call objects.
*/
public interface CallFactory {
/**
* Creates the Call.
*
* @param params the params map
* @return the call
* @throws TwilioRestException
*/
public Call create(Map params) throws TwilioRestException;
/**
* Creates the Call.
*
* @param params the params list
* @return the call
* @throws TwilioRestException
*/
public Call create(List params) throws TwilioRestException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy