![JAR search and dependency download from the Maven repository](/logo.png)
com.unboundid.scim.ldap.ResourceIDMapping 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.XmlType;
/**
* Java class for ResourceIDMapping complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ResourceIDMapping">
* <complexContent>
* <extension base="{http://www.unboundid.com/scim-ldap}AttributeMapping">
* <attribute name="createdBy" type="{http://www.unboundid.com/scim-ldap}CreatedBy" />
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ResourceIDMapping", namespace = "http://www.unboundid.com/scim-ldap")
public class ResourceIDMapping
extends AttributeMapping
{
@XmlAttribute(name = "createdBy")
protected CreatedBy createdBy;
/**
* Gets the value of the createdBy property.
*
* @return
* possible object is
* {@link CreatedBy }
*
*/
public CreatedBy getCreatedBy() {
return createdBy;
}
/**
* Sets the value of the createdBy property.
*
* @param value
* allowed object is
* {@link CreatedBy }
*
*/
public void setCreatedBy(CreatedBy value) {
this.createdBy = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy