View Javadoc
1   /**
2    * This Source Code Form is subject to the terms of the Mozilla Public
3    * License, v. 2.0. If a copy of the MPL was not distributed with this
4    * file, You can obtain one at http://mozilla.org/MPL/2.0/.
5    *
6    * If it is not possible or desirable to put the notice in a particular
7    * file, then You may include the notice in a location (such as a LICENSE
8    * file in a relevant directory) where a recipient would be likely to look
9    * for such a notice.
10  
11   * 
12   */
13   
14  /*  ---------------------------------------------------------------------------
15   *  U.S. Government, Department of the Army
16   *  Army Materiel Command
17   *  Research Development Engineering Command
18   *  Communications Electronics Research Development and Engineering Center
19   *  ---------------------------------------------------------------------------
20   */
21  package org.miloss.fgsms.plugins.sla.alertservice;
22  
23  import javax.xml.bind.JAXBElement;
24  import javax.xml.bind.annotation.XmlElementDecl;
25  import javax.xml.bind.annotation.XmlRegistry;
26  import javax.xml.namespace.QName;
27  
28  
29  /**
30   * This object contains factory methods for each 
31   * Java content interface and Java element interface 
32   * generated in the mil.army.cerdec.fgsms.plugins.sla.alertservice package. 
33   * <p>An ObjectFactory allows you to programatically 
34   * construct new instances of the Java representation 
35   * for XML content. The Java representation of XML 
36   * content can consist of schema derived interfaces 
37   * and classes representing the binding of schema 
38   * type definitions, element declarations and model 
39   * groups.  Factory methods for each of these are 
40   * provided in this class.
41   * 
42   */
43  @XmlRegistry
44  public class ObjectFactory {
45  
46      private final static QName _RecieveServiceAlert_QNAME = new QName("urn:mil:army:cerdec:fgsms:plugins:sla:alertservice", "RecieveServiceAlert");
47  
48      /**
49       * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: mil.army.cerdec.fgsms.plugins.sla.alertservice
50       * 
51       */
52      public ObjectFactory() {
53      }
54  
55      /**
56       * Create an instance of {@link RecieveServiceAlert }
57       * 
58       */
59      public RecieveServiceAlert createRecieveServiceAlert() {
60          return new RecieveServiceAlert();
61      }
62  
63      /**
64       * Create an instance of {@link JAXBElement }{@code <}{@link RecieveServiceAlert }{@code >}}
65       * 
66       */
67      @XmlElementDecl(namespace = "urn:mil:army:cerdec:fgsms:plugins:sla:alertservice", name = "RecieveServiceAlert")
68      public JAXBElement<RecieveServiceAlert> createRecieveServiceAlert(RecieveServiceAlert value) {
69          return new JAXBElement<RecieveServiceAlert>(_RecieveServiceAlert_QNAME, RecieveServiceAlert.class, null, value);
70      }
71  
72  }