1 /* 2 * Licensed to the Apache Software Foundation (ASF) under one or more 3 * contributor license agreements. See the NOTICE file distributed with 4 * this work for additional information regarding copyright ownership. 5 * The ASF licenses this file to You under the Apache License, Version 2.0 6 * (the "License"); you may not use this file except in compliance with 7 * the License. You may obtain a copy of the License at 8 * 9 * http://www.apache.org/licenses/LICENSE-2.0 10 * 11 * Unless required by applicable law or agreed to in writing, software 12 * distributed under the License is distributed on an "AS IS" BASIS, 13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 * See the License for the specific language governing permissions and 15 * limitations under the License. 16 */ 17 18 package org.apache.geronimo.jee.web; 19 20 import javax.xml.bind.JAXBElement; 21 import javax.xml.bind.annotation.XmlElementDecl; 22 import javax.xml.bind.annotation.XmlRegistry; 23 import javax.xml.namespace.QName; 24 25 26 /** 27 * This object contains factory methods for each 28 * Java content interface and Java element interface 29 * generated in the <strong>org.apache.geronimo.jee.web</strong> package. 30 * 31 * <p>An ObjectFactory allows you to programatically 32 * construct new instances of the Java representation 33 * for XML content. The Java representation of XML 34 * content can consist of schema derived interfaces 35 * and classes representing the binding of schema 36 * type definitions, element declarations and model 37 * groups. Factory methods for each of these are 38 * provided in this class. 39 * 40 * @version $Rev: 642503 $ $Date: 2008-03-29 12:35:01 +0800 (Sat, 29 Mar 2008) $ 41 */ 42 @XmlRegistry 43 public class ObjectFactory { 44 45 private final static QName _WebApp_QNAME = new QName("http://geronimo.apache.org/xml/ns/j2ee/web-2.0.1", "web-app"); 46 47 /** 48 * Create a new ObjectFactory that can be used to create new instances of schema 49 * derived classes for package: org.apache.geronimo.jee.web 50 * 51 */ 52 public ObjectFactory() { 53 } 54 55 /** 56 * Create an instance of {@link WebApp} 57 * 58 */ 59 public WebApp createWebApp() { 60 return new WebApp(); 61 } 62 63 /** 64 * Create an instance of {@link ContainerConfig} 65 * 66 */ 67 public ContainerConfig createContainerConfig() { 68 return new ContainerConfig(); 69 } 70 71 /** 72 * Create an instance of {@link JAXBElement }{@code <}{@link WebApp}{@code >}} 73 * 74 */ 75 @XmlElementDecl(namespace = "http://geronimo.apache.org/xml/ns/j2ee/web-2.0.1", name = "web-app") 76 public JAXBElement<WebApp> createWebApp(WebApp value) { 77 return new JAXBElement<WebApp>(_WebApp_QNAME, WebApp.class, null, value); 78 } 79 80 }