View Javadoc
1   package org.codehaus.mojo.axistools.java2wsdl;
2   
3   /*
4    * Licensed to the Apache Software Foundation (ASF) under one
5    * or more contributor license agreements.  See the NOTICE file
6    * distributed with this work for additional information
7    * regarding copyright ownership.  The ASF licenses this file
8    * to you under the Apache License, Version 2.0 (the
9    * "License"); you may not use this file except in compliance
10   * with the License.  You may obtain a copy of the License at
11   *
12   *   http://www.apache.org/licenses/LICENSE-2.0
13   *
14   * Unless required by applicable law or agreed to in writing,
15   * software distributed under the License is distributed on an
16   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17   * KIND, either express or implied.  See the License for the
18   * specific language governing permissions and limitations
19   * under the License.
20   */
21  
22  import org.codehaus.mojo.axistools.axis.AxisPluginException;
23  
24  import java.io.File;
25  import java.util.ArrayList;
26  
27  /**
28   * Java2WSDLPlugin:
29   *
30   * @author: jesse
31   * @date: Feb 21, 2006
32   * @version: $Id$
33   */
34  public interface Java2WSDLPlugin
35  {
36      String ROLE = Java2WSDLPlugin.class.getName();
37  
38      void setOutputDirectory( File outputDirectory );
39  
40      void setFilename( String filename );
41  
42      void setClassOfPortType( String classOfPortType );
43  
44      void setInput( String input );
45  
46      void setLocation( String location );
47  
48      void setPortTypeName( String portTypeName );
49  
50      void setBindingName( String bindingName );
51  
52      void setServiceElementName( String serviceElementName );
53  
54      void setServicePortName( String servicePortName );
55  
56      void setNamespace( String namespace );
57  
58      void setPackageToNamespace( String packageToNamespace );
59  
60      void setMethods( ArrayList methods );
61  
62      void setAll( boolean all );
63  
64      void setOutputWSDLMode( String outputWSDLMode );
65  
66      void setLocationImport( String locationImport );
67  
68      void setNamespaceImpl( String namespaceImpl );
69  
70      void setOutputImpl( String outputImpl );
71  
72      void setImplClass( String implClass );
73  
74      void setExcludes( ArrayList excludes );
75  
76      void setStopClasses( ArrayList stopClasses );
77  
78      void setTypeMappingVersion( String typeMappingVersion );
79  
80      void setSoapAction( String soapAction );
81  
82      void setStyle( String style );
83  
84      void setUse( String use );
85  
86      void setExtraClasses( ArrayList extraClasses );
87  
88      void setImportSchema( String importSchema );
89      
90      void setClasspath( String classpath );
91  
92      void execute()
93          throws AxisPluginException;
94  }