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

com.twilio.sdk.resource.factory.sip.IpAccessControlListFactory Maven / Gradle / Ivy

There is a newer version: 7.0.0-rc-10
Show newest version
package com.twilio.sdk.resource.factory.sip;

import java.util.Map;
import java.util.List;

import com.twilio.sdk.TwilioRestException;
import com.twilio.sdk.resource.instance.sip.IpAccessControlList;
import org.apache.http.NameValuePair;

// TODO: Auto-generated Javadoc
/**
 * A factory for creating IpAccessControlList objects.
 *
 * For more information see  https://www.twilio.com/docs/api/rest/ipaccesscontrollist
 *
 */
public interface IpAccessControlListFactory {


	/**
	 * Creates the ip access control list
	 *
	 * @param params the params map
	 * @return the ip access control list
	 * @throws TwilioRestException
	 */
	public IpAccessControlList create(Map params) throws TwilioRestException;

	/**
	 * Creates the ip access control list
	 *
	 * @param params the params list
	 * @return the ip access control list
	 * @throws TwilioRestException
	 */
	public IpAccessControlList create(List params) throws TwilioRestException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy