All Downloads are FREE. Search and download functionalities are using the official Maven repository.

fr.sii.sonar.test.junit.domain.v7.Error Maven / Gradle / Ivy

There is a newer version: 2.1.0
Show newest version
//
// Ce fichier a été généré par l'implémentation de référence JavaTM Architecture for XML Binding (JAXB), v2.2.7 
// Voir http://java.sun.com/xml/jaxb 
// Toute modification apportée à ce fichier sera perdue lors de la recompilation du schéma source. 
// Généré le : 2016.05.09 à 12:07:13 PM CEST 
//


package fr.sii.sonar.test.junit.domain.v7;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.XmlValue;


/**
 * 

Classe Java pour anonymous complex type. * *

Le fragment de schéma suivant indique le contenu attendu figurant dans cette classe. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <attribute name="type" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="message" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "content" }) @XmlRootElement(name = "error") public class Error { @XmlValue protected String content; @XmlAttribute(name = "type") protected String type; @XmlAttribute(name = "message") protected String message; /** * Obtient la valeur de la propriété content. * * @return * possible object is * {@link String } * */ public String getContent() { return content; } /** * Définit la valeur de la propriété content. * * @param value * allowed object is * {@link String } * */ public void setContent(String value) { this.content = value; } /** * Obtient la valeur de la propriété type. * * @return * possible object is * {@link String } * */ public String getType() { return type; } /** * Définit la valeur de la propriété type. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } /** * Obtient la valeur de la propriété message. * * @return * possible object is * {@link String } * */ public String getMessage() { return message; } /** * Définit la valeur de la propriété message. * * @param value * allowed object is * {@link String } * */ public void setMessage(String value) { this.message = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy