Skip to content

The IxoPay Gateway client library for Java

Notifications You must be signed in to change notification settings

psk-ixolit/java-ixopay

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

README

Release

Using the library

See src/example/java for examples on how to integrate the library.

There is no HTTP client library included to keep the library small and you can use any Java HTTP client of your choosing.

The library consists of two parts. First com.ixopay.client.model which contains JAXB models for all payment gateway operations. Second com.ixopay.client.signing which contains helpers to correctly sign an HTTP request and to hash transmitted passwords.

Gradle

Add the jitpack.io repository:

allprojects {
	repositories {
		...
		maven { url 'https://jitpack.io' }
	}
}

Add the dependency (replace VERSION with the GitHub release name):

dependencies {
	...
	compile 'com.github.ixolit:java-ixopay:VERSION'
	...
}

Maven

Add the jitpack.io repository:

<repositories>
	<repository>
	    <id>jitpack.io</id>
	    <url>https://jitpack.io</url>
	</repository>
</repositories>

Add the dependency (replace VERSION with the GitHub release name):

<dependency>
   <groupId>com.github.ixolit</groupId>
   <artifactId>java-ixopay</artifactId>
   <version>VERSION</version>
</dependency>

About

The IxoPay Gateway client library for Java

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 100.0%