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.)
- An IBM Information Server (including IA) environment
- User credentials to access the REST API of that environment
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:
iarest.disconnect();
This will close the active session and logout from the REST API.
This library is still under development -- further instructions to follow...
License: CC BY 4.0, Copyright Contributors to the ODPi Egeria project.