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: */package org.apache.geronimo.test.generated;
19:
20: import javax.xml.bind.annotation.XmlRegistry;
21:
22: /**
23: * This object contains factory methods for each
24: * Java content interface and Java element interface
25: * generated in the org.apache.geronimo.test.generated package.
26: * <p>An ObjectFactory allows you to programatically
27: * construct new instances of the Java representation
28: * for XML content. The Java representation of XML
29: * content can consist of schema derived interfaces
30: * and classes representing the binding of schema
31: * type definitions, element declarations and model
32: * groups. Factory methods for each of these are
33: * provided in this class.
34: *
35: */
36: @XmlRegistry
37: public class ObjectFactory {
38:
39: /**
40: * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.apache.geronimo.test.generated
41: *
42: */
43: public ObjectFactory() {
44: }
45:
46: /**
47: * Create an instance of {@link Account }
48: *
49: */
50: public Account createAccount() {
51: return new Account();
52: }
53:
54: }
|