View Javadoc

1   /*
2    * Copyright 2001-2004 The Apache Software Foundation.
3    * 
4    * Licensed under the Apache License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    * 
8    *      http://www.apache.org/licenses/LICENSE-2.0
9    * 
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  
17  package org.apache.geronimo.ews.ws4j2ee.module;
18  
19  import org.apache.geronimo.ews.ws4j2ee.toWs.GenerationFault;
20  
21  import java.io.InputStream;
22  import java.util.ArrayList;
23  
24  /***
25   * <p>This reprsents a packaged module jar,WAR,EAR file. the implementation
26   * classes of this interface should provide the acsses to the DD files and give
27   * a class loader that load the class files in the jar file.</p>
28   *
29   * @author hemapani
30   */
31  public interface Module {
32      public InputStream getEjbJarfile() throws GenerationFault;
33  
34      public InputStream getWebddfile() throws GenerationFault;
35  
36      public InputStream getWscfFile() throws GenerationFault;
37  
38      public void setEjbJarfile(InputStream stream) throws GenerationFault;
39  
40      public void setWebddfile(InputStream stream) throws GenerationFault;
41  
42      public void setWscfFile(InputStream stream) throws GenerationFault;
43  
44      public ClassLoader getClassLoaderWithPackageLoaded() throws GenerationFault;
45  
46      public ArrayList getClassPathElements() throws GenerationFault;
47  
48      public InputStream findFileInModule(String path) throws GenerationFault;
49  }