RTC Java Client API
There is a set of Java API’s that is available as part of Rational Team Concert to interact to with Jazz team server and manipulate data.
Platform Startup and Shutdown
Before beginning to use any of the plain Java API’s there is an explicit startup call that must be made in order for the client to initialize itself.
public static class MyMainClass {
public static void main(String[] args) {
TeamPlatform.startup();
try {
/* Do all of my work with RTC servers here. */
} finally {
TeamPlatform.shutdown();
}
}
}
Comments
Post a Comment