A Java implementation of a Java version of the Etsy API
JEtsy (Java Etsy API) is 2 things:
- An API. JEtsy provides a Java version of the Etsy API. Etsy's REST API is fully described using java
interfaces
. This allows anyone to build their own implementation of that API and makes adapting or extending the implementation much easier to achieve. - An Implementation. JEtsy provides a full implementation of the API mentioned above. This makes JEtsy usable right out of the gate. There's nothing to change, unless you need a specific feature or would rather use different underlying implementations (ex. a different Http transport).
Version 1.0.0003 of JEtsy is available from the Maven Central Repository here
<dependency>
<groupId>com.notronix</groupId>
<artifactId>JEtsy</artifactId>
<version>1.0.0003</version>
</dependency>
- Found an issue? Add the details here
- Want code changed? Fork the repository and make a pull request.