summaryrefslogtreecommitdiffstats
path: root/branches/sca-java-1.x/modules
diff options
context:
space:
mode:
authorvamsic007 <vamsic007@13f79535-47bb-0310-9956-ffa450edef68>2009-03-18 20:56:48 +0000
committervamsic007 <vamsic007@13f79535-47bb-0310-9956-ffa450edef68>2009-03-18 20:56:48 +0000
commitcf01849798f2d842bcace2e6af657c0fa5ed094d (patch)
treeab64b710dd2942676a06f14e9dc8e928d048cb27 /branches/sca-java-1.x/modules
parent1652ba6f56eb15744564f256177ae874c3d291f9 (diff)
Updated the methods to throw ContributionReadException.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@755731 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'branches/sca-java-1.x/modules')
-rw-r--r--branches/sca-java-1.x/modules/contribution-jee/src/main/java/org/apache/tuscany/sca/contribution/jee/JavaEEIntrospector.java12
1 files changed, 8 insertions, 4 deletions
diff --git a/branches/sca-java-1.x/modules/contribution-jee/src/main/java/org/apache/tuscany/sca/contribution/jee/JavaEEIntrospector.java b/branches/sca-java-1.x/modules/contribution-jee/src/main/java/org/apache/tuscany/sca/contribution/jee/JavaEEIntrospector.java
index 8855674e0b..ab89ce2bf7 100644
--- a/branches/sca-java-1.x/modules/contribution-jee/src/main/java/org/apache/tuscany/sca/contribution/jee/JavaEEIntrospector.java
+++ b/branches/sca-java-1.x/modules/contribution-jee/src/main/java/org/apache/tuscany/sca/contribution/jee/JavaEEIntrospector.java
@@ -20,11 +20,15 @@ package org.apache.tuscany.sca.contribution.jee;
import java.net.URL;
+import org.apache.tuscany.sca.contribution.service.ContributionReadException;
+
/**
- * Instrospect JavaEE modules and applications.
+ * Introspect JavaEE modules and applications.
+ *
+ * @version $Rev$ $Date$
*/
public interface JavaEEIntrospector {
- WebModuleInfo introspectWebArchive(URL artifactURL);
- EjbModuleInfo introspectEjbArchive(URL artifactURL);
- JavaEEApplicationInfo introspectJeeArchive(URL artifactURL);
+ WebModuleInfo introspectWebArchive(URL artifactURL) throws ContributionReadException;
+ EjbModuleInfo introspectEjbArchive(URL artifactURL) throws ContributionReadException;
+ JavaEEApplicationInfo introspectJeeArchive(URL artifactURL) throws ContributionReadException;
}