root/tools/routingservice/branches/wrs-2.0/src/util/service/Template.java

Revision 298, 3.4 KB (checked in by anton, 19 months ago)

Parameter values overriding implemented, GPL headers added

Line 
1/*  WRS 2.0
2 *  Copyright (C) 2009 Anton Patrushev
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 3 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18//
19// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.3 in JDK 1.6
20// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
21// Any modifications to this file will be lost upon recompilation of the source schema.
22// Generated on: 2009.04.15 at 11:15:28 AM JST
23//
24
25
26package util.service;
27
28import javax.xml.bind.annotation.XmlAccessType;
29import javax.xml.bind.annotation.XmlAccessorType;
30import javax.xml.bind.annotation.XmlAttribute;
31import javax.xml.bind.annotation.XmlRootElement;
32import javax.xml.bind.annotation.XmlType;
33
34
35/**
36 * <p>Java class for anonymous complex type.
37 *
38 * <p>The following schema fragment specifies the expected content contained within this class.
39 *
40 * <pre>
41 * &lt;complexType>
42 *   &lt;complexContent>
43 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
44 *       &lt;attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" />
45 *       &lt;attribute name="format" type="{http://www.w3.org/2001/XMLSchema}string" />
46 *       &lt;attribute name="url" type="{http://www.w3.org/2001/XMLSchema}string" />
47 *     &lt;/restriction>
48 *   &lt;/complexContent>
49 * &lt;/complexType>
50 * </pre>
51 *
52 *
53 */
54@XmlAccessorType(XmlAccessType.FIELD)
55@XmlType(name = "")
56@XmlRootElement(name = "template")
57public class Template {
58
59    @XmlAttribute
60    protected String name;
61    @XmlAttribute
62    protected String format;
63    @XmlAttribute
64    protected String url;
65
66    /**
67     * Gets the value of the name property.
68     *
69     * @return
70     *     possible object is
71     *     {@link String }
72     *     
73     */
74    public String getName() {
75        return name;
76    }
77
78    /**
79     * Sets the value of the name property.
80     *
81     * @param value
82     *     allowed object is
83     *     {@link String }
84     *     
85     */
86    public void setName(String value) {
87        this.name = value;
88    }
89
90    /**
91     * Gets the value of the format property.
92     *
93     * @return
94     *     possible object is
95     *     {@link String }
96     *     
97     */
98    public String getFormat() {
99        return format;
100    }
101
102    /**
103     * Sets the value of the format property.
104     *
105     * @param value
106     *     allowed object is
107     *     {@link String }
108     *     
109     */
110    public void setFormat(String value) {
111        this.format = value;
112    }
113
114    /**
115     * Gets the value of the url property.
116     *
117     * @return
118     *     possible object is
119     *     {@link String }
120     *     
121     */
122    public String getUrl() {
123        return url;
124    }
125
126    /**
127     * Sets the value of the url property.
128     *
129     * @param value
130     *     allowed object is
131     *     {@link String }
132     *     
133     */
134    public void setUrl(String value) {
135        this.url = value;
136    }
137
138}
Note: See TracBrowser for help on using the browser.