
net.datastream.schemas.mp_fields.REPORTPERMISSIONS Maven / Gradle / Ivy
package net.datastream.schemas.mp_fields;
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.XmlSchemaType;
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 name="PERM" type="{http://schemas.datastream.net/MP_fields}REPORT_PERMISSION_Type" maxOccurs="4"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"perm"
})
@XmlRootElement(name = "REPORTPERMISSIONS")
public class REPORTPERMISSIONS {
@XmlElement(name = "PERM", required = true)
@XmlSchemaType(name = "string")
protected List perm;
/**
* Gets the value of the perm 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 perm property.
*
*
* For example, to add a new item, do as follows:
*
* getPERM().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link REPORT_PERMISSION_Type }
*
*
*/
public List getPERM() {
if (perm == null) {
perm = new ArrayList();
}
return this.perm;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy