Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
RepositoryPolicy |
|
| 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 | * Download policy | |
19 | * | |
20 | * <p>Java class for RepositoryPolicy complex type. | |
21 | * | |
22 | * <p>The following schema fragment specifies the expected content contained within this class. | |
23 | * | |
24 | * <pre> | |
25 | * <complexType name="RepositoryPolicy"> | |
26 | * <complexContent> | |
27 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
28 | * <all> | |
29 | * <element name="enabled" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> | |
30 | * <element name="updatePolicy" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> | |
31 | * <element name="checksumPolicy" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> | |
32 | * </all> | |
33 | * </restriction> | |
34 | * </complexContent> | |
35 | * </complexType> | |
36 | * </pre> | |
37 | * | |
38 | * | |
39 | */ | |
40 | @XmlAccessorType(XmlAccessType.FIELD) | |
41 | @XmlType(name = "RepositoryPolicy", propOrder = { | |
42 | ||
43 | }) | |
44 | 3 | public class RepositoryPolicy { |
45 | ||
46 | @XmlElement(defaultValue = "true") | |
47 | protected Boolean enabled; | |
48 | protected String updatePolicy; | |
49 | protected String checksumPolicy; | |
50 | ||
51 | /** | |
52 | * Gets the value of the enabled property. | |
53 | * | |
54 | * @return | |
55 | * possible object is | |
56 | * {@link Boolean } | |
57 | * | |
58 | */ | |
59 | public Boolean getEnabled() { | |
60 | 0 | return enabled; |
61 | } | |
62 | ||
63 | /** | |
64 | * Sets the value of the enabled property. | |
65 | * | |
66 | * @param value | |
67 | * allowed object is | |
68 | * {@link Boolean } | |
69 | * | |
70 | */ | |
71 | public void setEnabled(Boolean value) { | |
72 | 0 | this.enabled = value; |
73 | 0 | } |
74 | ||
75 | /** | |
76 | * Gets the value of the updatePolicy property. | |
77 | * | |
78 | * @return | |
79 | * possible object is | |
80 | * {@link String } | |
81 | * | |
82 | */ | |
83 | public String getUpdatePolicy() { | |
84 | 0 | return updatePolicy; |
85 | } | |
86 | ||
87 | /** | |
88 | * Sets the value of the updatePolicy property. | |
89 | * | |
90 | * @param value | |
91 | * allowed object is | |
92 | * {@link String } | |
93 | * | |
94 | */ | |
95 | public void setUpdatePolicy(String value) { | |
96 | 0 | this.updatePolicy = value; |
97 | 0 | } |
98 | ||
99 | /** | |
100 | * Gets the value of the checksumPolicy property. | |
101 | * | |
102 | * @return | |
103 | * possible object is | |
104 | * {@link String } | |
105 | * | |
106 | */ | |
107 | public String getChecksumPolicy() { | |
108 | 0 | return checksumPolicy; |
109 | } | |
110 | ||
111 | /** | |
112 | * Sets the value of the checksumPolicy property. | |
113 | * | |
114 | * @param value | |
115 | * allowed object is | |
116 | * {@link String } | |
117 | * | |
118 | */ | |
119 | public void setChecksumPolicy(String value) { | |
120 | 0 | this.checksumPolicy = value; |
121 | 0 | } |
122 | ||
123 | } |