taskadapter / redmine-java-api

Redmine Java API
Apache License 2.0
269 stars 162 forks source link

Allow writing our own custom requests #312

Closed marob closed 5 years ago

marob commented 5 years ago

In order to allow writing our own custom requests (in the case the API has been improved by custom development), why not exporting the Transport?

We could then write our own requests like this:

RedmineManager redmineManager = RedmineManagerFactory.createWithApiKey(..., ...);
Transport transport = redmineManager.getTransport();
transport.getObject(..., ...);