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.jaxws.sample.addressbook;
20:
21: import javax.xml.bind.annotation.XmlRegistry;
22:
23: /**
24: * This object contains factory methods for each
25: * Java content interface and Java element interface
26: * generated in the org.apache.axis2.jaxws.sample.addressbook package.
27: * <p>An ObjectFactory allows you to programatically
28: * construct new instances of the Java representation
29: * for XML content. The Java representation of XML
30: * content can consist of schema derived interfaces
31: * and classes representing the binding of schema
32: * type definitions, element declarations and model
33: * groups. Factory methods for each of these are
34: * provided in this class.
35: *
36: */
37: @XmlRegistry
38: public class ObjectFactory {
39:
40: /**
41: * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.apache.axis2.jaxws.sample.addressbook
42: *
43: */
44: public ObjectFactory() {
45: }
46:
47: /**
48: * Create an instance of {@link FindEntryByName }
49: *
50: */
51: public FindEntryByName createFindEntryByName() {
52: return new FindEntryByName();
53: }
54:
55: /**
56: * Create an instance of {@link AddEntry }
57: *
58: */
59: public AddEntry createAddEntry() {
60: return new AddEntry();
61: }
62:
63: /**
64: * Create an instance of {@link AddressBookEntry }
65: *
66: */
67: public AddressBookEntry createAddressBookEntry() {
68: return new AddressBookEntry();
69: }
70:
71: /**
72: * Create an instance of {@link AddEntryResponse }
73: *
74: */
75: public AddEntryResponse createAddEntryResponse() {
76: return new AddEntryResponse();
77: }
78:
79: /**
80: * Create an instance of {@link FindEntryByNameResponse }
81: *
82: */
83: public FindEntryByNameResponse createFindEntryByNameResponse() {
84: return new FindEntryByNameResponse();
85: }
86:
87: }
|