All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.unboundid.scim.ldap.ComplexMultiValuedAttributeDefinition Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 1.8.26
Show newest version
//
// 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 java.util.ArrayList;
import java.util.List;
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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;


/**
 * 

Java class for ComplexMultiValuedAttributeDefinition complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="ComplexMultiValuedAttributeDefinition">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="subAttribute" type="{http://www.unboundid.com/scim-ldap}SubAttributeDefinition" maxOccurs="unbounded"/>
 *         <element name="canonicalValue" type="{http://www.unboundid.com/scim-ldap}CanonicalValue" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="childName" use="required" type="{http://www.w3.org/2001/XMLSchema}Name" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ComplexMultiValuedAttributeDefinition", namespace = "http://www.unboundid.com/scim-ldap", propOrder = { "subAttribute", "canonicalValue" }) public class ComplexMultiValuedAttributeDefinition { @XmlElement(required = true) protected List subAttribute; protected List canonicalValue; @XmlAttribute(required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "Name") protected String childName; /** * Gets the value of the subAttribute property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the subAttribute property. * *

* For example, to add a new item, do as follows: *

     *    getSubAttribute().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link SubAttributeDefinition } * * */ public List getSubAttribute() { if (subAttribute == null) { subAttribute = new ArrayList(); } return this.subAttribute; } /** * Gets the value of the canonicalValue property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the canonicalValue property. * *

* For example, to add a new item, do as follows: *

     *    getCanonicalValue().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link CanonicalValue } * * */ public List getCanonicalValue() { if (canonicalValue == null) { canonicalValue = new ArrayList(); } return this.canonicalValue; } /** * Gets the value of the childName property. * * @return * possible object is * {@link String } * */ public String getChildName() { return childName; } /** * Sets the value of the childName property. * * @param value * allowed object is * {@link String } * */ public void setChildName(String value) { this.childName = value; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy