Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoberto E. Escobar2013-12-10 17:18:43 +0000
committerGerrit Code Review @ Eclipse.org2013-12-18 20:41:59 +0000
commitada0190ee766d0f4a8bc1ad786dd7ef197c585f3 (patch)
tree72c5f86997d24c5f42f385aec2b2ad0e50662720 /plugins/org.eclipse.osee.x.server.integration.tests
parente3200c768c2983d2e36882ce8cb1ee4b41c6ecd6 (diff)
downloadorg.eclipse.osee-ada0190ee766d0f4a8bc1ad786dd7ef197c585f3.tar.gz
org.eclipse.osee-ada0190ee766d0f4a8bc1ad786dd7ef197c585f3.tar.xz
org.eclipse.osee-ada0190ee766d0f4a8bc1ad786dd7ef197c585f3.zip
feature: Create REST Client bundle
Moved base proxy handling and client configuration to its own bundle so other rest clients can re-use the code. Also so we can add common authentication handling mechanisms. Change-Id: Ic22b5cefed8fcd33bf064d6ea236532fdb01ee6d
Diffstat (limited to 'plugins/org.eclipse.osee.x.server.integration.tests')
-rw-r--r--plugins/org.eclipse.osee.x.server.integration.tests/META-INF/MANIFEST.MF5
-rw-r--r--plugins/org.eclipse.osee.x.server.integration.tests/src/org/eclipse/osee/x/server/integration/tests/performance/IntegrationUtil.java2
2 files changed, 4 insertions, 3 deletions
diff --git a/plugins/org.eclipse.osee.x.server.integration.tests/META-INF/MANIFEST.MF b/plugins/org.eclipse.osee.x.server.integration.tests/META-INF/MANIFEST.MF
index d690aeb021a..287c991bd15 100644
--- a/plugins/org.eclipse.osee.x.server.integration.tests/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.osee.x.server.integration.tests/META-INF/MANIFEST.MF
@@ -5,11 +5,12 @@ Bundle-SymbolicName: org.eclipse.osee.x.server.integration.tests
Bundle-Version: 0.16.0.qualifier
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Bundle-Vendor: Eclipse Open System Engineering Environment
-Require-Bundle: org.junit;bundle-version="4.11.0",
+Require-Bundle: org.junit,
org.eclipse.osee.orcs.rest.model,
org.eclipse.osee.orcs.rest.client,
org.databene.contiperf
Import-Package: org.eclipse.osee.framework.core.data,
org.eclipse.osee.framework.core.enums,
org.eclipse.osee.framework.core.exception,
- org.eclipse.osee.framework.jdk.core.type
+ org.eclipse.osee.framework.jdk.core.type,
+ org.eclipse.osee.rest.client
diff --git a/plugins/org.eclipse.osee.x.server.integration.tests/src/org/eclipse/osee/x/server/integration/tests/performance/IntegrationUtil.java b/plugins/org.eclipse.osee.x.server.integration.tests/src/org/eclipse/osee/x/server/integration/tests/performance/IntegrationUtil.java
index 545a03f165b..0f0cdbe071d 100644
--- a/plugins/org.eclipse.osee.x.server.integration.tests/src/org/eclipse/osee/x/server/integration/tests/performance/IntegrationUtil.java
+++ b/plugins/org.eclipse.osee.x.server.integration.tests/src/org/eclipse/osee/x/server/integration/tests/performance/IntegrationUtil.java
@@ -15,8 +15,8 @@ import org.databene.contiperf.report.CSVLatencyReportModule;
import org.databene.contiperf.report.CSVSummaryReportModule;
import org.databene.contiperf.report.HtmlReportModule;
import org.eclipse.osee.orcs.rest.client.OseeClient;
-import org.eclipse.osee.orcs.rest.client.OseeClientConfig;
import org.eclipse.osee.orcs.rest.client.OseeClientStandaloneSetup;
+import org.eclipse.osee.rest.client.OseeClientConfig;
import org.junit.rules.MethodRule;
public final class IntegrationUtil {

Back to the top