Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSusan Franklin2009-10-01 00:34:29 +0000
committerSusan Franklin2009-10-01 00:34:29 +0000
commit64d931827a3fa4f78e1541582d5ade362affc942 (patch)
tree6321e285ee6cb64077247591e97318324f3751f6 /bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/testserver/helper/AbstractTestServerClientCase.java
parent4e07fcf78428d5bdd4b6015a9584b3ef58957114 (diff)
downloadrt.equinox.p2-64d931827a3fa4f78e1541582d5ade362affc942.tar.gz
rt.equinox.p2-64d931827a3fa4f78e1541582d5ade362affc942.tar.xz
rt.equinox.p2-64d931827a3fa4f78e1541582d5ade362affc942.zip
Bug 288855 - [ui] IServiceUI should be registered using ds rather than in the startup code
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/testserver/helper/AbstractTestServerClientCase.java')
-rw-r--r--bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/testserver/helper/AbstractTestServerClientCase.java9
1 files changed, 9 insertions, 0 deletions
diff --git a/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/testserver/helper/AbstractTestServerClientCase.java b/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/testserver/helper/AbstractTestServerClientCase.java
index eff752e4d..ce14e91a7 100644
--- a/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/testserver/helper/AbstractTestServerClientCase.java
+++ b/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/testserver/helper/AbstractTestServerClientCase.java
@@ -118,6 +118,10 @@ public class AbstractTestServerClientCase extends TestCase {
public Certificate[] showCertificates(Certificate[][] certificates) {
return null;
}
+
+ public boolean promptForUnsignedContent(String[] details) {
+ return true;
+ }
}
/**
@@ -141,6 +145,11 @@ public class AbstractTestServerClientCase extends TestCase {
public Certificate[] showCertificates(Certificate[][] certificates) {
return null;
}
+
+ public boolean promptForUnsignedContent(String[] details) {
+ return true;
+ }
+
}
}

Back to the top