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

com.twilio.sdk.resource.factory.Factory Maven / Gradle / Ivy

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

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

import org.apache.http.NameValuePair;

import com.twilio.sdk.TwilioRestException;

/**
 * A factory for creating resources.
 */
public interface Factory {

	/**
	 * Creates a Resource
	 *
	 * @param params the params list
	 * @return a Participant
	 * @throws com.twilio.sdk.TwilioRestException
	 */
	public T create(Map params) throws TwilioRestException;

	/**
	 * Creates a Resource
	 *
	 * @param params the params list
	 * @return a Participant
	 * @throws TwilioRestException
	 */
	public T create(List params) throws TwilioRestException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy