Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.orcs.rest.client/src/org/eclipse/osee/orcs/rest/client/internal/OseeClientImpl.java')
-rw-r--r--plugins/org.eclipse.osee.orcs.rest.client/src/org/eclipse/osee/orcs/rest/client/internal/OseeClientImpl.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/org.eclipse.osee.orcs.rest.client/src/org/eclipse/osee/orcs/rest/client/internal/OseeClientImpl.java b/plugins/org.eclipse.osee.orcs.rest.client/src/org/eclipse/osee/orcs/rest/client/internal/OseeClientImpl.java
index 056cc605745..23d7382af9d 100644
--- a/plugins/org.eclipse.osee.orcs.rest.client/src/org/eclipse/osee/orcs/rest/client/internal/OseeClientImpl.java
+++ b/plugins/org.eclipse.osee.orcs.rest.client/src/org/eclipse/osee/orcs/rest/client/internal/OseeClientImpl.java
@@ -85,10 +85,10 @@ public class OseeClientImpl implements OseeClient, QueryExecutor {
public void update(Map<String, Object> properties) {
client = JaxRsClient.newBuilder().properties(properties).build();
- String address = properties != null ? (String) properties.get(OSEE_APPLICATION_SERVER) : null;
+ String address = properties != null ? (String) properties.get(
+ org.eclipse.osee.framework.core.data.OseeClient.OSEE_APPLICATION_SERVER) : null;
if (address == null) {
- address =
- System.getProperty(OSEE_APPLICATION_SERVER, org.eclipse.osee.framework.core.data.OseeClient.DEFAULT_URL);
+ address = org.eclipse.osee.framework.core.data.OseeClient.getOseeApplicationServer();
}
if (Strings.isValid(address)) {
orcsUri = UriBuilder.fromUri(address).path("orcs").build();

Back to the top