01: /*
02: * Copyright 2001-2004 The Apache Software Foundation.
03: *
04: * Licensed under the Apache License, Version 2.0 (the "License");
05: * you may not use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.apache.org/licenses/LICENSE-2.0
09: *
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: package samples.integrationGuide.example2;
17:
18: import org.apache.axis.wsdl.toJava.JavaDefinitionWriter;
19: import org.apache.axis.wsdl.toJava.JavaGeneratorFactory;
20: import org.apache.axis.wsdl.toJava.JavaUndeployWriter;
21:
22: import javax.wsdl.Definition;
23:
24: /**
25: * IBM Extension to WSDL2Java Emitter
26: * This class is used to locate the IBM extension writers.
27: * (For example the IBM JavaType Writer)
28: *
29: * @author Rich Scheuerle (scheu@us.ibm.com)
30: * @author Russell Butek (butek@us.ibm.com)
31: */
32: public class MyGeneratorFactory extends JavaGeneratorFactory {
33: /*
34: * NOTE! addDefinitionGenerators is the ONLY addXXXGenerators method
35: * that works at this point in time (2002-17-May). This rest of them
36: * are soon to be implemented.
37: */
38: protected void addDefinitionGenerators() {
39: addGenerator(Definition.class, JavaDefinitionWriter.class); // WSDL2Java's JavaDefinitionWriter
40: addGenerator(Definition.class, MyDeployWriter.class); // our DeployWriter
41: addGenerator(Definition.class, JavaUndeployWriter.class); // WSDL2Java's JavaUndeployWriter
42: } // addDefinitionGenerators
43:
44: } // class MyGeneratorFactory
|