Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
ActivationFile |
|
| 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 the file specification used to activate the profile. The missing value will be the location | |
19 | * of a file that needs to exist, and if it doesn't the profile will be activated. On the other hand exists will test | |
20 | * for the existence of the file and if it is there the profile will be activated. | |
21 | * | |
22 | * | |
23 | * <p>Java class for ActivationFile complex type. | |
24 | * | |
25 | * <p>The following schema fragment specifies the expected content contained within this class. | |
26 | * | |
27 | * <pre> | |
28 | * <complexType name="ActivationFile"> | |
29 | * <complexContent> | |
30 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
31 | * <all> | |
32 | * <element name="missing" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> | |
33 | * <element name="exists" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> | |
34 | * </all> | |
35 | * </restriction> | |
36 | * </complexContent> | |
37 | * </complexType> | |
38 | * </pre> | |
39 | * | |
40 | * | |
41 | */ | |
42 | @XmlAccessorType(XmlAccessType.FIELD) | |
43 | @XmlType(name = "ActivationFile", propOrder = { | |
44 | ||
45 | }) | |
46 | 0 | public class ActivationFile { |
47 | ||
48 | protected String missing; | |
49 | protected String exists; | |
50 | ||
51 | /** | |
52 | * Gets the value of the missing property. | |
53 | * | |
54 | * @return | |
55 | * possible object is | |
56 | * {@link String } | |
57 | * | |
58 | */ | |
59 | public String getMissing() { | |
60 | 0 | return missing; |
61 | } | |
62 | ||
63 | /** | |
64 | * Sets the value of the missing property. | |
65 | * | |
66 | * @param value | |
67 | * allowed object is | |
68 | * {@link String } | |
69 | * | |
70 | */ | |
71 | public void setMissing(String value) { | |
72 | 0 | this.missing = value; |
73 | 0 | } |
74 | ||
75 | /** | |
76 | * Gets the value of the exists property. | |
77 | * | |
78 | * @return | |
79 | * possible object is | |
80 | * {@link String } | |
81 | * | |
82 | */ | |
83 | public String getExists() { | |
84 | 0 | return exists; |
85 | } | |
86 | ||
87 | /** | |
88 | * Sets the value of the exists property. | |
89 | * | |
90 | * @param value | |
91 | * allowed object is | |
92 | * {@link String } | |
93 | * | |
94 | */ | |
95 | public void setExists(String value) { | |
96 | 0 | this.exists = value; |
97 | 0 | } |
98 | ||
99 | } |