All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.azaptree.services.spring.application.config.SpringApplicationService Maven / Gradle / Ivy

Go to download

Used to launch a Spring Application Service. The Spring Application Service is configured via Java based configuration.

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2013.01.13 at 05:04:58 PM EST 
//


package com.azaptree.services.spring.application.config;

/*
 * #%L
 * AZAPTREE-SPRING-APPLICATION-SERVICE
 * %%
 * Copyright (C) 2012 - 2013 AZAPTREE.COM
 * %%
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * #L%
 */

import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.XmlValue;


/**
 * 

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="configuration-classes" minOccurs="0">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <element name="class" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *         <element name="configuration-packages" minOccurs="0">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <element name="package" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *         <element name="jvm-system-properties" minOccurs="0">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <element name="prop" maxOccurs="unbounded">
 *                     <complexType>
 *                       <simpleContent>
 *                         <extension base="<http://www.w3.org/2001/XMLSchema>string">
 *                           <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *                         </extension>
 *                       </simpleContent>
 *                     </complexType>
 *                   </element>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configurationClasses", "configurationPackages", "jvmSystemProperties" }) @XmlRootElement(name = "spring-application-service") public class SpringApplicationService { @XmlElement(name = "configuration-classes") protected SpringApplicationService.ConfigurationClasses configurationClasses; @XmlElement(name = "configuration-packages") protected SpringApplicationService.ConfigurationPackages configurationPackages; @XmlElement(name = "jvm-system-properties") protected SpringApplicationService.JvmSystemProperties jvmSystemProperties; /** * Gets the value of the configurationClasses property. * * @return * possible object is * {@link SpringApplicationService.ConfigurationClasses } * */ public SpringApplicationService.ConfigurationClasses getConfigurationClasses() { return configurationClasses; } /** * Sets the value of the configurationClasses property. * * @param value * allowed object is * {@link SpringApplicationService.ConfigurationClasses } * */ public void setConfigurationClasses(SpringApplicationService.ConfigurationClasses value) { this.configurationClasses = value; } /** * Gets the value of the configurationPackages property. * * @return * possible object is * {@link SpringApplicationService.ConfigurationPackages } * */ public SpringApplicationService.ConfigurationPackages getConfigurationPackages() { return configurationPackages; } /** * Sets the value of the configurationPackages property. * * @param value * allowed object is * {@link SpringApplicationService.ConfigurationPackages } * */ public void setConfigurationPackages(SpringApplicationService.ConfigurationPackages value) { this.configurationPackages = value; } /** * Gets the value of the jvmSystemProperties property. * * @return * possible object is * {@link SpringApplicationService.JvmSystemProperties } * */ public SpringApplicationService.JvmSystemProperties getJvmSystemProperties() { return jvmSystemProperties; } /** * Sets the value of the jvmSystemProperties property. * * @param value * allowed object is * {@link SpringApplicationService.JvmSystemProperties } * */ public void setJvmSystemProperties(SpringApplicationService.JvmSystemProperties value) { this.jvmSystemProperties = value; } /** * * List of Spring configuration classes that are used to load the Spring ApplicationContext. * Classes must contain the @Configuration annotation. * * *

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

     * <complexType>
     *   <complexContent>
     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *       <sequence>
     *         <element name="class" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "clazz" }) public static class ConfigurationClasses { @XmlElement(name = "class", required = true) protected List clazz; /** * Gets the value of the clazz property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the clazz property. * *

* For example, to add a new item, do as follows: *

         *    getClazz().add(newItem);
         * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getClazz() { if (clazz == null) { clazz = new ArrayList(); } return this.clazz; } } /** * List of packages to scan for Spring configuration classes * *

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

     * <complexType>
     *   <complexContent>
     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *       <sequence>
     *         <element name="package" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "_package" }) public static class ConfigurationPackages { @XmlElement(name = "package", required = true) protected List _package; /** * Gets the value of the package property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the package property. * *

* For example, to add a new item, do as follows: *

         *    getPackage().add(newItem);
         * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getPackage() { if (_package == null) { _package = new ArrayList(); } return this._package; } } /** *

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

     * <complexType>
     *   <complexContent>
     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *       <sequence>
     *         <element name="prop" maxOccurs="unbounded">
     *           <complexType>
     *             <simpleContent>
     *               <extension base="<http://www.w3.org/2001/XMLSchema>string">
     *                 <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
     *               </extension>
     *             </simpleContent>
     *           </complexType>
     *         </element>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "prop" }) public static class JvmSystemProperties { @XmlElement(required = true) protected List prop; /** * Gets the value of the prop property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the prop property. * *

* For example, to add a new item, do as follows: *

         *    getProp().add(newItem);
         * 
* * *

* Objects of the following type(s) are allowed in the list * {@link SpringApplicationService.JvmSystemProperties.Prop } * * */ public List getProp() { if (prop == null) { prop = new ArrayList(); } return this.prop; } /** *

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

         * <complexType>
         *   <simpleContent>
         *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
         *       <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
         *     </extension>
         *   </simpleContent>
         * </complexType>
         * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "value" }) public static class Prop { @XmlValue protected String value; @XmlAttribute(name = "name", required = true) protected String name; /** * Gets the value of the value property. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy