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

com.sugarcrm.ws.soap.IDREFS Maven / Gradle / Ivy

There is a newer version: 5.3.3
Show newest version

package com.sugarcrm.ws.soap;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAnyAttribute;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlID;
import javax.xml.bind.annotation.XmlIDREF;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.XmlValue;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.namespace.QName;


/**
 * 

Java class for IDREFS complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="IDREFS">
 *   <simpleContent>
 *     <extension base="<http://www.w3.org/2001/XMLSchema>IDREFS">
 *       <attGroup ref="{http://schemas.xmlsoap.org/soap/encoding/}commonAttributes"/>
 *       <anyAttribute processContents='lax' namespace='##other'/>
 *     </extension>
 *   </simpleContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "IDREFS", namespace = "http://schemas.xmlsoap.org/soap/encoding/", propOrder = { "value" }) public class IDREFS { @XmlValue @XmlIDREF @XmlSchemaType(name = "IDREFS") protected List value; @XmlAttribute(name = "id") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlID @XmlSchemaType(name = "ID") protected java.lang.String id; @XmlAttribute(name = "href") @XmlSchemaType(name = "anyURI") protected java.lang.String href; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the value 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 value property. * *

* For example, to add a new item, do as follows: *

     *    getValue().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Object } * * */ public List getValue() { if (value == null) { value = new ArrayList(); } return this.value; } /** * Gets the value of the id property. * * @return * possible object is * {@link java.lang.String } * */ public java.lang.String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link java.lang.String } * */ public void setId(java.lang.String value) { this.id = value; } /** * Gets the value of the href property. * * @return * possible object is * {@link java.lang.String } * */ public java.lang.String getHref() { return href; } /** * Sets the value of the href property. * * @param value * allowed object is * {@link java.lang.String } * */ public void setHref(java.lang.String value) { this.href = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and * the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute * by updating the map directly. Because of this design, there's no setter. * * * @return * always non-null */ public Map getOtherAttributes() { return otherAttributes; } }