//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2012.04.29 at 10:11:42 PM EDT 
//


package com.montpeliertr.generated;

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.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="baseDn" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         &lt;element name="getAllFilter" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         &lt;element name="getOneFilter" type="{http://lsc-project.org/XSD/lsc-core-2.0.xsd}valuesType"/>
 *         &lt;element name="cleanFilter" type="{http://lsc-project.org/XSD/lsc-core-2.0.xsd}valuesType"/>
 *         &lt;element name="pivotAttributes" type="{http://lsc-project.org/XSD/lsc-core-2.0.xsd}valuesType"/>
 *         &lt;element name="fetchedAttributes" type="{http://lsc-project.org/XSD/lsc-core-2.0.xsd}valuesType"/>
 *       &lt;/sequence>
 *     &lt;/restriction>
 *   &lt;/complexContent>
 * &lt;/complexType>
 * </pre>
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
    "baseDn",
    "getAllFilter",
    "getOneFilter",
    "cleanFilter",
    "pivotAttributes",
    "fetchedAttributes"
})
@XmlRootElement(name = "SortedLdapSourceServiceSettings", namespace = "http://montpeliertr.com/ns/lsc-plugin-1.0")
public class SortedLdapSourceServiceSettings {

    @XmlElement(namespace = "http://montpeliertr.com/ns/lsc-plugin-1.0", required = true)
    protected String baseDn;
    @XmlElement(namespace = "http://montpeliertr.com/ns/lsc-plugin-1.0", required = true)
    protected String getAllFilter;
    @XmlElement(namespace = "http://montpeliertr.com/ns/lsc-plugin-1.0", required = true)
    protected ValuesType getOneFilter;
    @XmlElement(namespace = "http://montpeliertr.com/ns/lsc-plugin-1.0", required = true)
    protected ValuesType cleanFilter;
    @XmlElement(namespace = "http://montpeliertr.com/ns/lsc-plugin-1.0", required = true)
    protected ValuesType pivotAttributes;
    @XmlElement(namespace = "http://montpeliertr.com/ns/lsc-plugin-1.0", required = true)
    protected ValuesType fetchedAttributes;

    /**
     * Gets the value of the baseDn property.
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getBaseDn() {
        return baseDn;
    }

    /**
     * Sets the value of the baseDn property.
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    public void setBaseDn(String value) {
        this.baseDn = value;
    }

    /**
     * Gets the value of the getAllFilter property.
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getGetAllFilter() {
        return getAllFilter;
    }

    /**
     * Sets the value of the getAllFilter property.
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    public void setGetAllFilter(String value) {
        this.getAllFilter = value;
    }

    /**
     * Gets the value of the getOneFilter property.
     * 
     * @return
     *     possible object is
     *     {@link ValuesType }
     *     
     */
    public ValuesType getGetOneFilter() {
        return getOneFilter;
    }

    /**
     * Sets the value of the getOneFilter property.
     * 
     * @param value
     *     allowed object is
     *     {@link ValuesType }
     *     
     */
    public void setGetOneFilter(ValuesType value) {
        this.getOneFilter = value;
    }

    /**
     * Gets the value of the cleanFilter property.
     * 
     * @return
     *     possible object is
     *     {@link ValuesType }
     *     
     */
    public ValuesType getCleanFilter() {
        return cleanFilter;
    }

    /**
     * Sets the value of the cleanFilter property.
     * 
     * @param value
     *     allowed object is
     *     {@link ValuesType }
     *     
     */
    public void setCleanFilter(ValuesType value) {
        this.cleanFilter = value;
    }

    /**
     * Gets the value of the pivotAttributes property.
     * 
     * @return
     *     possible object is
     *     {@link ValuesType }
     *     
     */
    public ValuesType getPivotAttributes() {
        return pivotAttributes;
    }

    /**
     * Sets the value of the pivotAttributes property.
     * 
     * @param value
     *     allowed object is
     *     {@link ValuesType }
     *     
     */
    public void setPivotAttributes(ValuesType value) {
        this.pivotAttributes = value;
    }

    /**
     * Gets the value of the fetchedAttributes property.
     * 
     * @return
     *     possible object is
     *     {@link ValuesType }
     *     
     */
    public ValuesType getFetchedAttributes() {
        return fetchedAttributes;
    }

    /**
     * Sets the value of the fetchedAttributes property.
     * 
     * @param value
     *     allowed object is
     *     {@link ValuesType }
     *     
     */
    public void setFetchedAttributes(ValuesType value) {
        this.fetchedAttributes = value;
    }

}
