Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
Activation |
|
| 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.XmlElement; | |
14 | import javax.xml.bind.annotation.XmlType; | |
15 | ||
16 | ||
17 | /** | |
18 | * | |
19 | * The conditions within the build runtime environment which will trigger | |
20 | * the automatic inclusion of the build profile. | |
21 | * | |
22 | * | |
23 | * <p>Java class for Activation complex type. | |
24 | * | |
25 | * <p>The following schema fragment specifies the expected content contained within this class. | |
26 | * | |
27 | * <pre> | |
28 | * <complexType name="Activation"> | |
29 | * <complexContent> | |
30 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
31 | * <all> | |
32 | * <element name="activeByDefault" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> | |
33 | * <element name="jdk" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> | |
34 | * <element name="os" type="{http://maven.apache.org/POM/4.0.0}ActivationOS" minOccurs="0"/> | |
35 | * <element name="property" type="{http://maven.apache.org/POM/4.0.0}ActivationProperty" minOccurs="0"/> | |
36 | * <element name="file" type="{http://maven.apache.org/POM/4.0.0}ActivationFile" minOccurs="0"/> | |
37 | * </all> | |
38 | * </restriction> | |
39 | * </complexContent> | |
40 | * </complexType> | |
41 | * </pre> | |
42 | * | |
43 | * | |
44 | */ | |
45 | @XmlAccessorType(XmlAccessType.FIELD) | |
46 | @XmlType(name = "Activation", propOrder = { | |
47 | ||
48 | }) | |
49 | 0 | public class Activation { |
50 | ||
51 | @XmlElement(defaultValue = "false") | |
52 | protected Boolean activeByDefault; | |
53 | protected String jdk; | |
54 | protected ActivationOS os; | |
55 | protected ActivationProperty property; | |
56 | protected ActivationFile file; | |
57 | ||
58 | /** | |
59 | * Gets the value of the activeByDefault property. | |
60 | * | |
61 | * @return | |
62 | * possible object is | |
63 | * {@link Boolean } | |
64 | * | |
65 | */ | |
66 | public Boolean getActiveByDefault() { | |
67 | 0 | return activeByDefault; |
68 | } | |
69 | ||
70 | /** | |
71 | * Sets the value of the activeByDefault property. | |
72 | * | |
73 | * @param value | |
74 | * allowed object is | |
75 | * {@link Boolean } | |
76 | * | |
77 | */ | |
78 | public void setActiveByDefault(Boolean value) { | |
79 | 0 | this.activeByDefault = value; |
80 | 0 | } |
81 | ||
82 | /** | |
83 | * Gets the value of the jdk property. | |
84 | * | |
85 | * @return | |
86 | * possible object is | |
87 | * {@link String } | |
88 | * | |
89 | */ | |
90 | public String getJdk() { | |
91 | 0 | return jdk; |
92 | } | |
93 | ||
94 | /** | |
95 | * Sets the value of the jdk property. | |
96 | * | |
97 | * @param value | |
98 | * allowed object is | |
99 | * {@link String } | |
100 | * | |
101 | */ | |
102 | public void setJdk(String value) { | |
103 | 0 | this.jdk = value; |
104 | 0 | } |
105 | ||
106 | /** | |
107 | * Gets the value of the os property. | |
108 | * | |
109 | * @return | |
110 | * possible object is | |
111 | * {@link ActivationOS } | |
112 | * | |
113 | */ | |
114 | public ActivationOS getOs() { | |
115 | 0 | return os; |
116 | } | |
117 | ||
118 | /** | |
119 | * Sets the value of the os property. | |
120 | * | |
121 | * @param value | |
122 | * allowed object is | |
123 | * {@link ActivationOS } | |
124 | * | |
125 | */ | |
126 | public void setOs(ActivationOS value) { | |
127 | 0 | this.os = value; |
128 | 0 | } |
129 | ||
130 | /** | |
131 | * Gets the value of the property property. | |
132 | * | |
133 | * @return | |
134 | * possible object is | |
135 | * {@link ActivationProperty } | |
136 | * | |
137 | */ | |
138 | public ActivationProperty getProperty() { | |
139 | 0 | return property; |
140 | } | |
141 | ||
142 | /** | |
143 | * Sets the value of the property property. | |
144 | * | |
145 | * @param value | |
146 | * allowed object is | |
147 | * {@link ActivationProperty } | |
148 | * | |
149 | */ | |
150 | public void setProperty(ActivationProperty value) { | |
151 | 0 | this.property = value; |
152 | 0 | } |
153 | ||
154 | /** | |
155 | * Gets the value of the file property. | |
156 | * | |
157 | * @return | |
158 | * possible object is | |
159 | * {@link ActivationFile } | |
160 | * | |
161 | */ | |
162 | public ActivationFile getFile() { | |
163 | 0 | return file; |
164 | } | |
165 | ||
166 | /** | |
167 | * Sets the value of the file property. | |
168 | * | |
169 | * @param value | |
170 | * allowed object is | |
171 | * {@link ActivationFile } | |
172 | * | |
173 | */ | |
174 | public void setFile(ActivationFile value) { | |
175 | 0 | this.file = value; |
176 | 0 | } |
177 | ||
178 | } |