Skip to content

Latest commit

 

History

History

ia-clientlibrary

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

javadoc Maven Central

IBM IA REST Client Library

A Java client library for integrating with IBM Information Analyzer's (IA's) REST API. (Note: this library is still under development, so may not yet operate fully or as you would expect.)

Requirements

  • An IBM Information Server (including IA) environment
  • User credentials to access the REST API of that environment

Usage

Connecting

The IARestClient class provides the entry point to creating a connection to IA:

import org.odpi.egeria.connectors.ibm.ia.clientlibrary.IARestClient;

IARestClient iarest = new IARestClient("myenv.myhost.com", "9446", "isadmin", "password");

Creating an IARestClient object will connect to the environment, open and retain the cookies for a session.

To cleanly disconnect, simply call the disconnect() method on the client:

Disconnecting

iarest.disconnect();

This will close the active session and logout from the REST API.

Using the library

This library is still under development -- further instructions to follow...


License: CC BY 4.0, Copyright Contributors to the ODPi Egeria project.