public class TreeJob
{
- private final CiClient cipresClient;
+ private final static CiApplication app = CiApplication.getInstance();
- private final CiApplication app = CiApplication.getInstance();
+ private final static CiClient cipresClient = new CiClient(
+ app.getAppKey(), app.getUsername(), app.getPassword(),
+ app.getRestUrl()
+ );
private CiJob submittedJob;
private boolean paramsValidated = false;
+ // Clients for umbrella application, not currently in use.
+ private static CiClient adminClient;
+
+ private CiClient userClient;
+
public TreeJob()
{
- cipresClient = new CiClient(
- app.getAppKey(), app.getUsername(), app.getPassword(),
- app.getRestUrl()
- );
-
}
public TreeJob(String alignmentFilePath)