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: public class WizardBean {
22: private ClassFileSelectionBean classFileBean;
23: private WSDLFileLocationBean wsdlBean;
24: private LibrarySelectionBean libraryBean;
25:
26: private Page2Bean page2bean;
27: private Page3Bean page3bean;
28:
29: /**
30: * @return Returns the libraryBean.
31: */
32: public LibrarySelectionBean getLibraryBean() {
33: return libraryBean;
34: }
35:
36: /**
37: * @param libraryBean The libraryBean to set.
38: */
39: public void setLibraryBean(LibrarySelectionBean libraryBean) {
40: this .libraryBean = libraryBean;
41: }
42:
43: /**
44: * @return Returns the wsdlBean.
45: */
46: public WSDLFileLocationBean getWsdlBean() {
47: return wsdlBean;
48: }
49:
50: /**
51: * @param wsdlBean The wsdlBean to set.
52: */
53: public void setWsdlBean(WSDLFileLocationBean wsdlBean) {
54: this .wsdlBean = wsdlBean;
55: }
56:
57: public ClassFileSelectionBean getPage1bean() {
58: return classFileBean;
59: }
60:
61: public void setPage1bean(ClassFileSelectionBean page1bean) {
62: this .classFileBean = page1bean;
63: }
64:
65: public Page2Bean getPage2bean() {
66: return page2bean;
67: }
68:
69: public void setPage2bean(Page2Bean page2bean) {
70: this .page2bean = page2bean;
71: }
72:
73: public Page3Bean getPage3bean() {
74: return page3bean;
75: }
76:
77: public void setPage3bean(Page3Bean page3bean) {
78: this.page3bean = page3bean;
79: }
80:
81: }
|