![JAR search and dependency download from the Maven repository](/logo.png)
com.unboundid.scim.ldap.LDAPSearchParametersRef Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2021.09.07 at 04:20:58 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.XmlIDREF;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for LDAPSearchParametersRef complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="LDAPSearchParametersRef">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="idref" use="required" type="{http://www.w3.org/2001/XMLSchema}IDREF" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "LDAPSearchParametersRef", namespace = "http://www.unboundid.com/scim-ldap")
public class LDAPSearchParametersRef {
@XmlAttribute(name = "idref", required = true)
@XmlIDREF
@XmlSchemaType(name = "IDREF")
protected Object idref;
/**
* Gets the value of the idref property.
*
* @return
* possible object is
* {@link Object }
*
*/
public Object getIdref() {
return idref;
}
/**
* Sets the value of the idref property.
*
* @param value
* allowed object is
* {@link Object }
*
*/
public void setIdref(Object value) {
this.idref = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy