com.sun.jbi.management.message.MsgLocInfo Maven / Gradle / Ivy
Show all versions of manage Show documentation
//
// Ce fichier a été généré par l'implémentation de référence JavaTM Architecture for XML Binding (JAXB), v2.2.6
// 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 : 2014.12.02 à 10:42:44 AM CET
//
package com.sun.jbi.management.message;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* 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">
* <sequence>
* <element ref="{http://java.sun.com/xml/ns/jbi/management-message}loc-token"/>
* <element ref="{http://java.sun.com/xml/ns/jbi/management-message}loc-message"/>
* <element ref="{http://java.sun.com/xml/ns/jbi/management-message}loc-param" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"locToken",
"locMessage",
"locParam"
})
@XmlRootElement(name = "msg-loc-info")
public class MsgLocInfo {
@XmlElement(name = "loc-token", required = true)
protected String locToken;
@XmlElement(name = "loc-message", required = true)
protected String locMessage;
@XmlElement(name = "loc-param")
protected List locParam;
/**
* Obtient la valeur de la propriété locToken.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLocToken() {
return locToken;
}
/**
* Définit la valeur de la propriété locToken.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLocToken(String value) {
this.locToken = value;
}
/**
* Obtient la valeur de la propriété locMessage.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLocMessage() {
return locMessage;
}
/**
* Définit la valeur de la propriété locMessage.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLocMessage(String value) {
this.locMessage = value;
}
/**
* Gets the value of the locParam property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the locParam property.
*
*
* For example, to add a new item, do as follows:
*
* getLocParam().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getLocParam() {
if (locParam == null) {
locParam = new ArrayList();
}
return this.locParam;
}
}