From cf01849798f2d842bcace2e6af657c0fa5ed094d Mon Sep 17 00:00:00 2001 From: vamsic007 Date: Wed, 18 Mar 2009 20:56:48 +0000 Subject: Updated the methods to throw ContributionReadException. git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@755731 13f79535-47bb-0310-9956-ffa450edef68 --- .../tuscany/sca/contribution/jee/JavaEEIntrospector.java | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'branches/sca-java-1.x/modules') 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; } -- cgit v1.2.3