Subversion Repositories bacoAlunos

Rev

Blame | Compare with Previous | Last modification | View Log | RSS feed


package pt.ipportalegre.siges.web.services;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;


/**
 * <p>Java class for anonymous complex type.
 *
 * <p>The following schema fragment specifies the expected content contained within this class.
 *
 * <pre>
 * &lt;complexType>
 *   &lt;complexContent>
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       &lt;sequence>
 *         &lt;element name="addAlunoLdapResult" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       &lt;/sequence>
 *     &lt;/restriction>
 *   &lt;/complexContent>
 * &lt;/complexType>
 * </pre>
 *
 *
 */

@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
    "addAlunoLdapResult"
})
@XmlRootElement(name = "addAlunoLdapResponse")
public class AddAlunoLdapResponse {

    protected 1.5.0/docs/api/java/lang/String.html">String addAlunoLdapResult;

    /**
     * Gets the value of the addAlunoLdapResult property.
     *
     * @return
     *     possible object is
     *     {@link String }
     *    
     */

    public 1.5.0/docs/api/java/lang/String.html">String getAddAlunoLdapResult() {
        return addAlunoLdapResult;
    }

    /**
     * Sets the value of the addAlunoLdapResult property.
     *
     * @param value
     *     allowed object is
     *     {@link String }
     *    
     */

    public void setAddAlunoLdapResult(1.5.0/docs/api/java/lang/String.html">String value) {
        this.addAlunoLdapResult = value;
    }

}