| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| ActivationProperty |
|
| 1.0;1 |
| 1 | // | |
| 2 | // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 | |
| 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: 2012.11.09 at 12:33:57 PM EST | |
| 6 | // | |
| 7 | ||
| 8 | ||
| 9 | package org.owasp.dependencycheck.jaxb.pom.generated; | |
| 10 | ||
| 11 | import javax.annotation.Generated; | |
| 12 | import javax.xml.bind.annotation.XmlAccessType; | |
| 13 | import javax.xml.bind.annotation.XmlAccessorType; | |
| 14 | import javax.xml.bind.annotation.XmlType; | |
| 15 | ||
| 16 | ||
| 17 | /** | |
| 18 | * | |
| 19 | * This is the property specification used to activate a profile. If the value field is empty, | |
| 20 | * then the existence of the named property will activate the profile, otherwise it does a case-sensitive | |
| 21 | * match against the property value as well. | |
| 22 | * | |
| 23 | * | |
| 24 | * <p>Java class for ActivationProperty complex type. | |
| 25 | * | |
| 26 | * <p>The following schema fragment specifies the expected content contained within this class. | |
| 27 | * | |
| 28 | * <pre> | |
| 29 | * <complexType name="ActivationProperty"> | |
| 30 | * <complexContent> | |
| 31 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
| 32 | * <all> | |
| 33 | * <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> | |
| 34 | * <element name="value" 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 = "ActivationProperty", propOrder = { | |
| 45 | ||
| 46 | }) | |
| 47 | @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") | |
| 48 | 3 | public class ActivationProperty { |
| 49 | ||
| 50 | @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") | |
| 51 | protected String name; | |
| 52 | @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") | |
| 53 | protected String value; | |
| 54 | ||
| 55 | /** | |
| 56 | * Gets the value of the name property. | |
| 57 | * | |
| 58 | * @return | |
| 59 | * possible object is | |
| 60 | * {@link String } | |
| 61 | * | |
| 62 | */ | |
| 63 | @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") | |
| 64 | public String getName() { | |
| 65 | 0 | return name; |
| 66 | } | |
| 67 | ||
| 68 | /** | |
| 69 | * Sets the value of the name property. | |
| 70 | * | |
| 71 | * @param value | |
| 72 | * allowed object is | |
| 73 | * {@link String } | |
| 74 | * | |
| 75 | */ | |
| 76 | @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") | |
| 77 | public void setName(String value) { | |
| 78 | 0 | this.name = value; |
| 79 | 0 | } |
| 80 | ||
| 81 | /** | |
| 82 | * Gets the value of the value property. | |
| 83 | * | |
| 84 | * @return | |
| 85 | * possible object is | |
| 86 | * {@link String } | |
| 87 | * | |
| 88 | */ | |
| 89 | @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") | |
| 90 | public String getValue() { | |
| 91 | 0 | return value; |
| 92 | } | |
| 93 | ||
| 94 | /** | |
| 95 | * Sets the value of the value property. | |
| 96 | * | |
| 97 | * @param value | |
| 98 | * allowed object is | |
| 99 | * {@link String } | |
| 100 | * | |
| 101 | */ | |
| 102 | @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") | |
| 103 | public void setValue(String value) { | |
| 104 | 0 | this.value = value; |
| 105 | 0 | } |
| 106 | ||
| 107 | } |