-
Notifications
You must be signed in to change notification settings - Fork 7
Helper classes
Doug Schmidt edited this page Sep 15, 2017
·
1 revision
The com.aquaticinformatics.aquarius.sdk
namespace includes a few helper classes/methods to make your integration life simpler.
The connected client contains a ServerVersion
property which describes exact version of the AQTS server to which it connected. See Version Checking for more details
try (AquariusClient client = AquariusClient.createConnectedClient("myserver", "myuser", "mypassword")) {
System.out.format("Connected to %s (%s)\n", server, client.ServerVersion);
}
The above code would output Connected to myserver (2017.1.96.0)
when running the 17.1 GA release of AQTS.
TODO: Add an equivalent to the .NET SDK's AquariusSystemDetector class
Still have questions? Feel free to raise an issue or contact our Support Team
- SDK design philosophy (on the .NET SDK wiki)
- AQTS client concepts
- AQTS code examples
- Troubleshooting tips