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

org.redmine.ta.internal.comm.Communicator Maven / Gradle / Ivy

Go to download

Free open-source Java API for Redmine and Chiliproject bug/task management systems.

The newest version!
package org.redmine.ta.internal.comm;

import org.apache.http.HttpRequest;
import org.redmine.ta.RedmineException;

public interface Communicator {

	/**
	 * Performs a request.
	 * 
	 * @return the response body.
	 */
	public abstract  R sendRequest(HttpRequest request,
			ContentHandler contentHandler) throws RedmineException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy