com.unboundid.scim.ldap.LDAPSearchParameters Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scim-ldap Show documentation
Show all versions of scim-ldap Show documentation
The UnboundID SCIM-LDAP module builds on the UnboundID SCIM-SDK to provide
classes that map SCIM resources to LDAP entries and vice versa. It also
contains several APIs that may be used to implement custom behaviors for
the mapping configuration file to extend its capabilities above and beyond
those provided out of the box. Each extension type varies in the amount of
control the implementation has over the mapping process and the amount of
effort required for implementation.
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-833
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2012.05.08 at 03:01:00 PM CDT
//
package com.unboundid.scim.ldap;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlID;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* Java class for LDAPSearchParameters complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="LDAPSearchParameters">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="baseDN" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="filter" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="resourceIDMapping" type="{http://www.unboundid.com/scim-ldap}ResourceIDMapping" minOccurs="0"/>
* </sequence>
* <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}ID" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "LDAPSearchParameters", namespace = "http://www.unboundid.com/scim-ldap", propOrder = {
"baseDN",
"filter",
"resourceIDMapping"
})
public class LDAPSearchParameters {
@XmlElement(required = true)
protected String baseDN;
@XmlElement(required = true)
protected String filter;
protected ResourceIDMapping resourceIDMapping;
@XmlAttribute(required = true)
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlID
@XmlSchemaType(name = "ID")
protected String id;
/**
* 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 filter property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFilter() {
return filter;
}
/**
* Sets the value of the filter property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFilter(String value) {
this.filter = value;
}
/**
* Gets the value of the resourceIDMapping property.
*
* @return
* possible object is
* {@link ResourceIDMapping }
*
*/
public ResourceIDMapping getResourceIDMapping() {
return resourceIDMapping;
}
/**
* Sets the value of the resourceIDMapping property.
*
* @param value
* allowed object is
* {@link ResourceIDMapping }
*
*/
public void setResourceIDMapping(ResourceIDMapping value) {
this.resourceIDMapping = value;
}
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setId(String value) {
this.id = value;
}
}