Subversion Repositories XServices

Rev

View as "text/plain" | Blame | Last modification | View Log | Download | RSS feed


package net.brutex.sbm.wsclient;

import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlType;


/**
 * <p>Java class for OrderBy complex type.
 * 
 * <p>The following schema fragment specifies the expected content contained within this class.
 * 
 * <pre>
 * &lt;complexType name="OrderBy">
 *   &lt;complexContent>
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       &lt;sequence>
 *         &lt;element name="firstFieldName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         &lt;element name="secondFieldName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       &lt;/sequence>
 *     &lt;/restriction>
 *   &lt;/complexContent>
 * &lt;/complexType>
 * </pre>
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "OrderBy", propOrder = {
    "firstFieldName",
    "secondFieldName"
})
public class OrderBy {

    @XmlElementRef(name = "firstFieldName", namespace = "urn:aewebservices71", type = JAXBElement.class)
    protected JAXBElement<String> firstFieldName;
    @XmlElementRef(name = "secondFieldName", namespace = "urn:aewebservices71", type = JAXBElement.class)
    protected JAXBElement<String> secondFieldName;

    /**
     * Gets the value of the firstFieldName property.
     * 
     * @return
     *     possible object is
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
     *     
     */
    public JAXBElement<String> getFirstFieldName() {
        return firstFieldName;
    }

    /**
     * Sets the value of the firstFieldName property.
     * 
     * @param value
     *     allowed object is
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
     *     
     */
    public void setFirstFieldName(JAXBElement<String> value) {
        this.firstFieldName = ((JAXBElement<String> ) value);
    }

    /**
     * Gets the value of the secondFieldName property.
     * 
     * @return
     *     possible object is
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
     *     
     */
    public JAXBElement<String> getSecondFieldName() {
        return secondFieldName;
    }

    /**
     * Sets the value of the secondFieldName property.
     * 
     * @param value
     *     allowed object is
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
     *     
     */
    public void setSecondFieldName(JAXBElement<String> value) {
        this.secondFieldName = ((JAXBElement<String> ) value);
    }

}