001 // 002 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1.5-b01-fcs 003 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 004 // Any modifications to this file will be lost upon recompilation of the source schema. 005 // Generated on: 2008.01.25 at 09:11:52 AM GMT-10:00 006 // 007 008 009 package org.hackystat.sensor.ant.junit.jaxb; 010 011 import javax.xml.bind.annotation.XmlAccessType; 012 import javax.xml.bind.annotation.XmlAccessorType; 013 import javax.xml.bind.annotation.XmlAttribute; 014 import javax.xml.bind.annotation.XmlRootElement; 015 import javax.xml.bind.annotation.XmlType; 016 017 018 /** 019 * <p>Java class for anonymous complex type. 020 * 021 * <p>The following schema fragment specifies the expected content contained within this class. 022 * 023 * <pre> 024 * <complexType> 025 * <complexContent> 026 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> 027 * <attribute ref="{}message"/> 028 * <attribute ref="{}type"/> 029 * </restriction> 030 * </complexContent> 031 * </complexType> 032 * </pre> 033 * 034 * 035 */ 036 @XmlAccessorType(XmlAccessType.FIELD) 037 @XmlType(name = "") 038 @XmlRootElement(name = "error") 039 public class Error { 040 041 @XmlAttribute 042 protected String message; 043 @XmlAttribute 044 protected String type; 045 046 /** 047 * Gets the value of the message property. 048 * 049 * @return 050 * possible object is 051 * {@link String } 052 * 053 */ 054 public String getMessage() { 055 return message; 056 } 057 058 /** 059 * Sets the value of the message property. 060 * 061 * @param value 062 * allowed object is 063 * {@link String } 064 * 065 */ 066 public void setMessage(String value) { 067 this.message = value; 068 } 069 070 /** 071 * Gets the value of the type property. 072 * 073 * @return 074 * possible object is 075 * {@link String } 076 * 077 */ 078 public String getType() { 079 return type; 080 } 081 082 /** 083 * Sets the value of the type property. 084 * 085 * @param value 086 * allowed object is 087 * {@link String } 088 * 089 */ 090 public void setType(String value) { 091 this.type = value; 092 } 093 094 }