https://github.com/fredericheem/jripple
jripple provides a java API to connect to the ripple server
https://github.com/fredericheem/jripple
Last synced: about 1 month ago
JSON representation
jripple provides a java API to connect to the ripple server
- Host: GitHub
- URL: https://github.com/fredericheem/jripple
- Owner: FredericHeem
- License: other
- Created: 2013-07-01T20:21:56.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2015-03-28T16:25:33.000Z (about 11 years ago)
- Last Synced: 2025-02-28T20:41:53.816Z (over 1 year ago)
- Language: Java
- Size: 207 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
## Introduction
**jripple** is a java websocket client that connect to the [ripple] (https://ripple.com) server
Both asynchronous and synchronous API are supported.
## Getting started
### Get source and build it
git clone git@github.com:FredericHeem/jripple.git
cd jripple
mvn install
## Operations
[account_info] (https://ripple.com/wiki/RPC_API#account_info)
[account_lines] (https://ripple.com/wiki/RPC_API#account_lines)
## Usage
See [RippleWsClientAccountInfoTest.java] (https://github.com/FredericHeem/jripple/blob/master/src/test/java/org/opencoin/client/RippleWsClientAccountInfoTest.java) for unitest related to the account_info command
See [RippleWsClientAccountLinesTest.java] (https://github.com/FredericHeem/jripple/blob/master/src/test/java/org/opencoin/client/RippleWsClientAccountLinesTest.java) for unitest related to the account_lines command
## Development
**jripple** is built with maven, developed with eclipse, tested with junit, statically analyzed, code covered, and continuously integrated: [](https://travis-ci.org/FredericHeem/jripple)
### Generate the eclipse project
mvn eclipse:eclipse
### Run the unitest
mvn test
### Run static analysis with [pmd] (http://pmd.sourceforge.net/)
mvn pmd:pmd
View the report at target/site/pmd.html
### Run static analysis [findbugs] (http://findbugs.sourceforge.net/)
mvn site:site
View the report at target/site/findbugs.html
### Generate the code coverage report with [cobertura] (http://cobertura.sourceforge.net/)
mvn cobertura:cobertura
View report at target/site/cobertura/index.html
## Contributors
[FredericHeem](https://github.com/FredericHeem)