Coverage Report - fr.paris.lutece.plugins.releaser.business.jaxb.maven.ActivationProperty
 
Classes in this File Line Coverage Branch Coverage Complexity
ActivationProperty
0 %
0/7
N/A
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 property specification used to activate a profile. If the value field is empty,
 19  
  *         then the existence of the named property will activate the profile, otherwise it does a case-sensitive
 20  
  *         match against the property value as well.
 21  
  *       
 22  
  * 
 23  
  * <p>Java class for ActivationProperty complex type.
 24  
  * 
 25  
  * <p>The following schema fragment specifies the expected content contained within this class.
 26  
  * 
 27  
  * <pre>
 28  
  * &lt;complexType name="ActivationProperty">
 29  
  *   &lt;complexContent>
 30  
  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 31  
  *       &lt;all>
 32  
  *         &lt;element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 33  
  *         &lt;element name="value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 34  
  *       &lt;/all>
 35  
  *     &lt;/restriction>
 36  
  *   &lt;/complexContent>
 37  
  * &lt;/complexType>
 38  
  * </pre>
 39  
  * 
 40  
  * 
 41  
  */
 42  
 @XmlAccessorType(XmlAccessType.FIELD)
 43  
 @XmlType(name = "ActivationProperty", propOrder = {
 44  
 
 45  
 })
 46  0
 public class ActivationProperty {
 47  
 
 48  
     protected String name;
 49  
     protected String value;
 50  
 
 51  
     /**
 52  
      * Gets the value of the name property.
 53  
      * 
 54  
      * @return
 55  
      *     possible object is
 56  
      *     {@link String }
 57  
      *     
 58  
      */
 59  
     public String getName() {
 60  0
         return name;
 61  
     }
 62  
 
 63  
     /**
 64  
      * Sets the value of the name property.
 65  
      * 
 66  
      * @param value
 67  
      *     allowed object is
 68  
      *     {@link String }
 69  
      *     
 70  
      */
 71  
     public void setName(String value) {
 72  0
         this.name = value;
 73  0
     }
 74  
 
 75  
     /**
 76  
      * Gets the value of the value property.
 77  
      * 
 78  
      * @return
 79  
      *     possible object is
 80  
      *     {@link String }
 81  
      *     
 82  
      */
 83  
     public String getValue() {
 84  0
         return value;
 85  
     }
 86  
 
 87  
     /**
 88  
      * Sets the value of the value property.
 89  
      * 
 90  
      * @param value
 91  
      *     allowed object is
 92  
      *     {@link String }
 93  
      *     
 94  
      */
 95  
     public void setValue(String value) {
 96  0
         this.value = value;
 97  0
     }
 98  
 
 99  
 }