Skip to content

PKI TPS Java API

Endi S. Dewata edited this page Dec 17, 2020 · 1 revision

PKI TPS Java API

To create a TPS session:

TPSClient tpsClient = new TPSClient(client);
AccountInfo accountInfo = tpsClient.login();

The AccountInfo contains information about the subsystem user (e.g. user ID, full name, email, roles).

To remove the session:

tpsClient.logout();

See also TPSClient.java.

Clone this wiki locally