Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
ActivationOS |
|
| 1.0;1 |
1 | // | |
2 | // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-833 | |
3 | // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> | |
4 | // Any modifications to this file will be lost upon recompilation of the source schema. | |
5 | // Generated on: 2017.05.11 at 06:51:22 PM CEST | |
6 | // | |
7 | ||
8 | ||
9 | package fr.paris.lutece.plugins.releaser.business.jaxb.maven; | |
10 | ||
11 | import javax.xml.bind.annotation.XmlAccessType; | |
12 | import javax.xml.bind.annotation.XmlAccessorType; | |
13 | import javax.xml.bind.annotation.XmlType; | |
14 | ||
15 | ||
16 | /** | |
17 | * | |
18 | * This is an activator which will detect an operating system's attributes in order to activate | |
19 | * its profile. | |
20 | * | |
21 | * | |
22 | * <p>Java class for ActivationOS complex type. | |
23 | * | |
24 | * <p>The following schema fragment specifies the expected content contained within this class. | |
25 | * | |
26 | * <pre> | |
27 | * <complexType name="ActivationOS"> | |
28 | * <complexContent> | |
29 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
30 | * <all> | |
31 | * <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> | |
32 | * <element name="family" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> | |
33 | * <element name="arch" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> | |
34 | * <element name="version" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> | |
35 | * </all> | |
36 | * </restriction> | |
37 | * </complexContent> | |
38 | * </complexType> | |
39 | * </pre> | |
40 | * | |
41 | * | |
42 | */ | |
43 | @XmlAccessorType(XmlAccessType.FIELD) | |
44 | @XmlType(name = "ActivationOS", propOrder = { | |
45 | ||
46 | }) | |
47 | 0 | public class ActivationOS { |
48 | ||
49 | protected String name; | |
50 | protected String family; | |
51 | protected String arch; | |
52 | protected String version; | |
53 | ||
54 | /** | |
55 | * Gets the value of the name property. | |
56 | * | |
57 | * @return | |
58 | * possible object is | |
59 | * {@link String } | |
60 | * | |
61 | */ | |
62 | public String getName() { | |
63 | 0 | return name; |
64 | } | |
65 | ||
66 | /** | |
67 | * Sets the value of the name property. | |
68 | * | |
69 | * @param value | |
70 | * allowed object is | |
71 | * {@link String } | |
72 | * | |
73 | */ | |
74 | public void setName(String value) { | |
75 | 0 | this.name = value; |
76 | 0 | } |
77 | ||
78 | /** | |
79 | * Gets the value of the family property. | |
80 | * | |
81 | * @return | |
82 | * possible object is | |
83 | * {@link String } | |
84 | * | |
85 | */ | |
86 | public String getFamily() { | |
87 | 0 | return family; |
88 | } | |
89 | ||
90 | /** | |
91 | * Sets the value of the family property. | |
92 | * | |
93 | * @param value | |
94 | * allowed object is | |
95 | * {@link String } | |
96 | * | |
97 | */ | |
98 | public void setFamily(String value) { | |
99 | 0 | this.family = value; |
100 | 0 | } |
101 | ||
102 | /** | |
103 | * Gets the value of the arch property. | |
104 | * | |
105 | * @return | |
106 | * possible object is | |
107 | * {@link String } | |
108 | * | |
109 | */ | |
110 | public String getArch() { | |
111 | 0 | return arch; |
112 | } | |
113 | ||
114 | /** | |
115 | * Sets the value of the arch property. | |
116 | * | |
117 | * @param value | |
118 | * allowed object is | |
119 | * {@link String } | |
120 | * | |
121 | */ | |
122 | public void setArch(String value) { | |
123 | 0 | this.arch = value; |
124 | 0 | } |
125 | ||
126 | /** | |
127 | * Gets the value of the version property. | |
128 | * | |
129 | * @return | |
130 | * possible object is | |
131 | * {@link String } | |
132 | * | |
133 | */ | |
134 | public String getVersion() { | |
135 | 0 | return version; |
136 | } | |
137 | ||
138 | /** | |
139 | * Sets the value of the version property. | |
140 | * | |
141 | * @param value | |
142 | * allowed object is | |
143 | * {@link String } | |
144 | * | |
145 | */ | |
146 | public void setVersion(String value) { | |
147 | 0 | this.version = value; |
148 | 0 | } |
149 | ||
150 | } |