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

com.unboundid.scim.ldap.SimpleMultiValuedAttributeDefinition 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 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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;


/**
 * 

Java class for SimpleMultiValuedAttributeDefinition complex type. * *

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

 * <complexType name="SimpleMultiValuedAttributeDefinition">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="canonicalValue" type="{http://www.unboundid.com/scim-ldap}CanonicalValue" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="mapping" type="{http://www.unboundid.com/scim-ldap}AttributeMapping" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="childName" use="required" type="{http://www.w3.org/2001/XMLSchema}Name" />
 *       <attribute name="dataType" use="required" type="{http://www.unboundid.com/scim-ldap}DataType" />
 *       <attribute name="caseExact" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SimpleMultiValuedAttributeDefinition", namespace = "http://www.unboundid.com/scim-ldap", propOrder = { "canonicalValue", "mapping" }) public class SimpleMultiValuedAttributeDefinition { protected List canonicalValue; protected AttributeMapping mapping; @XmlAttribute(name = "childName", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "Name") protected String childName; @XmlAttribute(name = "dataType", required = true) protected DataType dataType; @XmlAttribute(name = "caseExact") protected Boolean caseExact; /** * 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 mapping property. * * @return * possible object is * {@link AttributeMapping } * */ public AttributeMapping getMapping() { return mapping; } /** * Sets the value of the mapping property. * * @param value * allowed object is * {@link AttributeMapping } * */ public void setMapping(AttributeMapping value) { this.mapping = value; } /** * 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; } /** * Gets the value of the dataType property. * * @return * possible object is * {@link DataType } * */ public DataType getDataType() { return dataType; } /** * Sets the value of the dataType property. * * @param value * allowed object is * {@link DataType } * */ public void setDataType(DataType value) { this.dataType = value; } /** * Gets the value of the caseExact property. * * @return * possible object is * {@link Boolean } * */ public boolean isCaseExact() { if (caseExact == null) { return false; } else { return caseExact; } } /** * Sets the value of the caseExact property. * * @param value * allowed object is * {@link Boolean } * */ public void setCaseExact(Boolean value) { this.caseExact = value; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy