org.redmine.ta.internal.comm.SimpleCommunicator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of redmine-java-api Show documentation
Show all versions of redmine-java-api Show documentation
Free open-source Java API for Redmine and Chiliproject bug/task management systems.
package org.redmine.ta.internal.comm;
import org.apache.http.HttpRequest;
import org.redmine.ta.RedmineException;
/**
* Simple communicator interface.
*
* @author maxkar
*
*/
public interface SimpleCommunicator {
/**
* Performs a request.
*
* @return the response body.
*/
public abstract T sendRequest(HttpRequest request) throws RedmineException;
}