private int objectsPerPage = DEFAULT_OBJECTS_PER_PAGE;
private static final String CHARSET = "UTF-8";
public Transport(URIConfigurator configurator, HttpClient client) {
this.configurator = configurator;
final Communicator<HttpResponse> baseCommunicator = new BaseCommunicator(client);
this.authenticator = new RedmineAuthenticator<HttpResponse>(
baseCommunicator, CHARSET);
final ContentHandler<BasicHttpResponse, BasicHttpResponse> errorProcessor = new RedmineErrorHandler();
errorCheckingCommunicator = Communicators.fmap(
authenticator,