Skip to content

a base class for create clients for the organicity tools and their apis

Notifications You must be signed in to change notification settings

OrganicityEu-Platform/java-service-client-base

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 

Repository files navigation

java-service-client-base

This repository offers a base Class to create clients for APIs that use the Organicity AAA component.

It is based on SpringBoot and RestTemplate in order to exchange data.

To use it on your own project simply add :

<dependencies>
    <dependency>
        <groupId>eu.organicity</groupId>
        <artifactId>java-service-client-base</artifactId>
        <version>1.0-SNAPSHOT</version>
    </dependency>
</dependencies>

<repositories>
    <repository>
        <id>organicity</id>
        <url>https://maven.organicity.eu/content/repositories/snapshots</url>
    </repository>
</repositories>

And create a class by extending the OrganicityServiceBaseClient class:

public class MyAwesomeServiceClient extends OrganicityServiceBaseClient {
    public MyAwesomeServiceClient(final String token) {
        super(token);
    }
}

About

a base class for create clients for the organicity tools and their apis

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages