https://github.com/proshin-roman/finapi-java-client
True-OOP Java client for API provided by https://finapi.io
https://github.com/proshin-roman/finapi-java-client
api-client finapi fintech java oop
Last synced: 3 months ago
JSON representation
True-OOP Java client for API provided by https://finapi.io
- Host: GitHub
- URL: https://github.com/proshin-roman/finapi-java-client
- Owner: proshin-roman
- License: apache-2.0
- Archived: true
- Created: 2018-07-07T14:08:48.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2021-06-21T22:14:23.000Z (almost 5 years ago)
- Last Synced: 2025-08-02T08:36:42.745Z (9 months ago)
- Topics: api-client, finapi, fintech, java, oop
- Language: Java
- Homepage:
- Size: 901 KB
- Stars: 22
- Watchers: 7
- Forks: 7
- Open Issues: 26
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
⚠️ Development and maintenance of this project is over. Thank you all who were using it and even contributing into it!
Feel free to fork it and continue the project under your name. If you decide to do so - write me an email and I will put a link to your repo here!
---
[](http://www.elegantobjects.org)
[](https://www.jetbrains.com/idea/)
[](http://www.apache.org/licenses/LICENSE-2.0)
### Releases
[](https://maven-badges.herokuapp.com/maven-central/org.proshin/finapi-java-client)
[](https://app.fossa.io/projects/git%2Bgithub.com%2Fproshin-roman%2Ffinapi-java-client?ref=badge_shield)
[](https://jitpack.io/#proshin-roman/finapi-java-client)
### Builds
[](https://travis-ci.com/proshin-roman/finapi-java-client)
[](https://ci.appveyor.com/project/proshin-roman/finapi-java-client/branch/master)
### Code quality
[](https://codecov.io/gh/proshin-roman/finapi-java-client)
[](https://coveralls.io/github/proshin-roman/finapi-java-client?branch=master)
[](https://codebeat.co/projects/github-com-proshin-roman-finapi-java-client-master)
[](https://sonarcloud.io/dashboard?id=org.proshin%3Afinapi-java-client)
[](https://www.codefactor.io/repository/github/proshin-roman/finapi-java-client)
[](https://hitsofcode.com/view/github/proshin-roman/finapi-java-client)
### Puzzle Driven Development
[](http://www.0pdd.com/p?name=proshin-roman/finapi-java-client)
### Community
[](https://gitter.im/finapi-java-client/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
**finapi-java-client** is a true-OOP Java client for API provided by [finAPI](https://finapi.io).
## Principles
The project is following the next principles (it is a subset of [those ones](https://www.elegantobjects.org/#principles)):
- No null
- No getters and setters
- No mutable objects
- No static methods, not even private ones
- No instanceof, type casting or reflection
- No implementation inheritance
All badges are through [iwillfailyou](https://iwillfailyou.com/)




## How to use
Just add the following lines into your `pom.xml`
```!xml
org.proshin
finapi-java-client
${version}
```
You can find the latest `version` on [`Releases`](https://github.com/proshin-roman/finapi-java-client/releases) page.
## What about logging?
The library uses [Logback](https://logback.qos.ch) for logging. As well you can enable logging of the [Apache HTTP
client](https://hc.apache.org) library by specifying command line parameters
(read [this](https://hc.apache.org/httpcomponents-client-ga/logging.html) for more details):
```
-Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.SimpleLog
-Dorg.apache.commons.logging.simplelog.showdatetime=true
-Dorg.apache.commons.logging.simplelog.log.org.apache.http=DEBUG
-Dorg.apache.commons.logging.simplelog.log.org.apache.http.wire=ERROR
```
## How to contribute
Just fork the repo and send a pull request.
Make sure your branch builds without any warnings/issues:
```
mvn clean install
```
## How to release
Push a new **annotated** tag. Here is an example of the command:
```
git tag -a v0.1.107 -m "Release v0.1.107" 53901d
```
Versioning is done using [jgitver](https://github.com/jgitver/jgitver) tool, so it will use the new tag as a base of
the version.
## License
Copyright 2018-2019 Roman Proshin
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
[](https://app.fossa.io/projects/git%2Bgithub.com%2Fproshin-roman%2Ffinapi-java-client?ref=badge_large)