summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/trunk/modules/deployment/src/main
diff options
context:
space:
mode:
authorantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2011-05-11 09:11:40 +0000
committerantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2011-05-11 09:11:40 +0000
commitc983386e8d1e329f8189edaa7a2435f88408cd9a (patch)
tree6efd7d14a027d1a925a74dfd17fc06947add39fd /sca-java-2.x/trunk/modules/deployment/src/main
parente4cee24b41a6ddbb8981c638fb444319e9401f11 (diff)
Update the registry to store info about a contributions deployables and exports so that distrubuted nodes are able to see what is available without having to actually go get and install a remote contribution. This is work in progress, an alternative is to just put the Contribution model object itself in the registry and have the registry impl hide the details, but this approach is easier for now as we see how things can work
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1101793 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-2.x/trunk/modules/deployment/src/main')
-rw-r--r--sca-java-2.x/trunk/modules/deployment/src/main/java/org/apache/tuscany/sca/deployment/impl/DeployerImpl.java10
1 files changed, 9 insertions, 1 deletions
diff --git a/sca-java-2.x/trunk/modules/deployment/src/main/java/org/apache/tuscany/sca/deployment/impl/DeployerImpl.java b/sca-java-2.x/trunk/modules/deployment/src/main/java/org/apache/tuscany/sca/deployment/impl/DeployerImpl.java
index 4dfda2f5b9..ec8be4fe35 100644
--- a/sca-java-2.x/trunk/modules/deployment/src/main/java/org/apache/tuscany/sca/deployment/impl/DeployerImpl.java
+++ b/sca-java-2.x/trunk/modules/deployment/src/main/java/org/apache/tuscany/sca/deployment/impl/DeployerImpl.java
@@ -851,7 +851,7 @@ public class DeployerImpl implements Deployer {
return null;
}
- public void installContribution(String uri, String url) {
+ public void installContribution(String uri, String url, List<QName> deployables, List<Export> exports) {
}
public List<String> getInstalledContributionURIs() {
@@ -864,5 +864,13 @@ public class DeployerImpl implements Deployer {
public void uninstallContribution(String uri) {
}
+
+ public List<QName> getInstalledContributionDeployables(String uri) {
+ return null;
+ }
+
+ public List<Export> getInstalledContributionExports(String uri) {
+ return null;
+ }
}
}