Coverage Report - yarfraw.generated.admin.elements.AdminExtension
 
Classes in this File Line Coverage Branch Coverage Complexity
AdminExtension
100% 
N/A 
0
 
 1  
 //
 2  
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1.5-b01-fcs 
 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: 2008.06.11 at 12:15:46 AM EDT 
 6  
 //
 7  
 
 8  
 
 9  
 package yarfraw.generated.admin.elements;
 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.XmlRootElement;
 15  
 import javax.xml.bind.annotation.XmlType;
 16  
 
 17  
 
 18  
 /**
 19  
  * <p>Java class for anonymous complex type.
 20  
  * 
 21  
  * <p>The following schema fragment specifies the expected content contained within this class.
 22  
  * 
 23  
  * <pre>
 24  
  * &lt;complexType>
 25  
  *   &lt;complexContent>
 26  
  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 27  
  *       &lt;sequence>
 28  
  *         &lt;element ref="{http://webns.net/mvcb/}generatorAgent"/>
 29  
  *         &lt;element ref="{http://webns.net/mvcb/}errorReportsTo"/>
 30  
  *       &lt;/sequence>
 31  
  *     &lt;/restriction>
 32  
  *   &lt;/complexContent>
 33  
  * &lt;/complexType>
 34  
  * </pre>
 35  
  * 
 36  
  * 
 37  
  */
 38  
 @XmlAccessorType(XmlAccessType.FIELD)
 39  
 @XmlType(name = "", propOrder = {
 40  
     "generatorAgent",
 41  
     "errorReportsTo"
 42  
 })
 43  
 @XmlRootElement(name = "adminExtension")
 44  6
 public class AdminExtension {
 45  
 
 46  
     @XmlElement(required = true)
 47  
     protected AdminType generatorAgent;
 48  
     @XmlElement(required = true)
 49  
     protected AdminType errorReportsTo;
 50  
 
 51  
     /**
 52  
      *  
 53  
      * &lt;admin:errorReportsTo> is a URI (typically a 'mailto:' URL) for contacting the person or source of the 
 54  
      * particular instance of RSS/RDF information. This would generally be used to report technical errors in the use of 
 55  
      * RSS, RDF, or XML.
 56  
      *                                                  
 57  
      *                                                 
 58  
      * 
 59  
      * @return
 60  
      *     possible object is
 61  
      *     {@link AdminType }
 62  
      *     
 63  
      */
 64  
     public AdminType getGeneratorAgent() {
 65  6
         return generatorAgent;
 66  
     }
 67  
 
 68  
     /**
 69  
      * Sets the value of the generatorAgent property.
 70  
      * 
 71  
      * @param value
 72  
      *     allowed object is
 73  
      *     {@link AdminType }
 74  
      *     
 75  
      */
 76  
     public void setGeneratorAgent(AdminType value) {
 77  6
         this.generatorAgent = value;
 78  6
     }
 79  
 
 80  
     /**
 81  
      *  
 82  
      * &lt;admin:generatorAgent> is a URI of the software that was used to generate the RSS/RDF. 
 83  
      * This is similar to the User-Agent field in HTTP or the X-Mailer field in email. It can be 
 84  
      * used to spot and report errors in the generating software and for statistical information. 
 85  
      * The URI should include version information, and if it is a resolvable URL should return a user-readable HTML page.
 86  
      *                                                  
 87  
      *                                                 
 88  
      * 
 89  
      * @return
 90  
      *     possible object is
 91  
      *     {@link AdminType }
 92  
      *     
 93  
      */
 94  
     public AdminType getErrorReportsTo() {
 95  6
         return errorReportsTo;
 96  
     }
 97  
 
 98  
     /**
 99  
      * Sets the value of the errorReportsTo property.
 100  
      * 
 101  
      * @param value
 102  
      *     allowed object is
 103  
      *     {@link AdminType }
 104  
      *     
 105  
      */
 106  
     public void setErrorReportsTo(AdminType value) {
 107  6
         this.errorReportsTo = value;
 108  6
     }
 109  
 
 110  
 }