01: /*
02: * Licensed to the Apache Software Foundation (ASF) under one
03: * or more contributor license agreements. See the NOTICE file
04: * distributed with this work for additional information
05: * regarding copyright ownership. The ASF licenses this file
06: * to you under the Apache License, Version 2.0 (the
07: * "License"); you may not use this file except in compliance
08: * with the License. You may obtain a copy of the License at
09: *
10: * http://www.apache.org/licenses/LICENSE-2.0
11: *
12: * Unless required by applicable law or agreed to in writing,
13: * software distributed under the License is distributed on an
14: * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15: * KIND, either express or implied. See the License for the
16: * specific language governing permissions and limitations
17: * under the License.
18: */
19: package org.apache.axis2.tool.service.bean;
20:
21: import java.util.Vector;
22:
23: public class WSDLAutoGenerateOptionBean {
24: //rest of the parameters are taken from other
25: //beans
26: private String classFileName;
27: private String style;
28: private String outputFileName;
29: private Vector listOfMethods;
30:
31: /**
32: * @return Returns the outputFileName.
33: */
34: public String getOutputFileName() {
35: return outputFileName;
36: }
37:
38: /**
39: * @param outputFileName The outputFileName to set.
40: */
41: public void setOutputFileName(String outputFileName) {
42: this .outputFileName = outputFileName;
43: }
44:
45: /**
46: * @return Returns the classFileName.
47: */
48: public String getClassFileName() {
49: return classFileName;
50: }
51:
52: /**
53: * @param classFileName The classFileName to set.
54: */
55: public void setClassFileName(String classFileName) {
56: this .classFileName = classFileName;
57: }
58:
59: /**
60: * @return Returns the style.
61: */
62: public String getStyle() {
63: return style;
64: }
65:
66: /**
67: * @param style The style to set.
68: */
69: public void setStyle(String style) {
70: this .style = style;
71: }
72:
73: /**
74: * @return Returns the listOfMethods.
75: */
76: public Vector getListOfMethods() {
77: return listOfMethods;
78: }
79:
80: /**
81: * @param listOfMethods The listOfMethods to set.
82: */
83: public void setListOfMethods(Vector listOfMethods) {
84: this.listOfMethods = listOfMethods;
85: }
86: }
|