se.kth.infosys.smx.alma.model.RsLibraries Maven / Gradle / Ivy
Show all versions of alma-rest Show documentation
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2017.02.28 at 10:09:37 AM CET
//
package se.kth.infosys.smx.alma.model;
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.XmlType;
/**
* List of the user's related resource sharing libraries.
* On SIS synch this field will not be replaced if it was updated manually (or if empty in the incoming user record).
* For external users in PUT action: this field will not be replaced if it was updated manually (or if empty in the incoming user record), unless 'override' parameter is sent with the field's name.
*
*
* Java class for rs_libraries complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="rs_libraries">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="rs_library" type="{}rs_library" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "rs_libraries", propOrder = {
"rsLibrary"
})
public class RsLibraries {
@XmlElement(name = "rs_library")
protected List rsLibrary;
/**
* Gets the value of the rsLibrary 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 rsLibrary property.
*
*
* For example, to add a new item, do as follows:
*
* getRsLibrary().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link RsLibrary }
*
*
*/
public List getRsLibrary() {
if (rsLibrary == null) {
rsLibrary = new ArrayList();
}
return this.rsLibrary;
}
}