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 22 package org.miloss.fgsms.plugins.sla.alertservice; 23 24 import javax.xml.bind.JAXBElement; 25 import javax.xml.bind.annotation.XmlElementDecl; 26 import javax.xml.bind.annotation.XmlRegistry; 27 import javax.xml.namespace.QName; 28 29 30 /** 31 * This object contains factory methods for each 32 * Java content interface and Java element interface 33 * generated in the mil.army.cerdec.fgsms.plugins.sla.alertservice package. 34 * <p>An ObjectFactory allows you to programatically 35 * construct new instances of the Java representation 36 * for XML content. The Java representation of XML 37 * content can consist of schema derived interfaces 38 * and classes representing the binding of schema 39 * type definitions, element declarations and model 40 * groups. Factory methods for each of these are 41 * provided in this class. 42 * 43 */ 44 @XmlRegistry 45 public class ObjectFactory { 46 47 private final static QName _RecieveServiceAlert_QNAME = new QName("urn:mil:army:cerdec:fgsms:plugins:sla:alertservice", "RecieveServiceAlert"); 48 49 /** 50 * 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 51 * 52 */ 53 public ObjectFactory() { 54 } 55 56 /** 57 * Create an instance of {@link RecieveServiceAlert } 58 * 59 */ 60 public RecieveServiceAlert createRecieveServiceAlert() { 61 return new RecieveServiceAlert(); 62 } 63 64 /** 65 * Create an instance of {@link JAXBElement }{@code <}{@link RecieveServiceAlert }{@code >}} 66 * 67 */ 68 @XmlElementDecl(namespace = "urn:mil:army:cerdec:fgsms:plugins:sla:alertservice", name = "RecieveServiceAlert") 69 public JAXBElement<RecieveServiceAlert> createRecieveServiceAlert(RecieveServiceAlert value) { 70 return new JAXBElement<RecieveServiceAlert>(_RecieveServiceAlert_QNAME, RecieveServiceAlert.class, null, value); 71 } 72 73 }