com.evolveum.midpoint.xml.ns._public.common.common_1
Class SchemaHandlingType

java.lang.Object
  extended by com.evolveum.midpoint.xml.ns._public.common.common_1.SchemaHandlingType
All Implemented Interfaces:
java.io.Serializable

public class SchemaHandlingType
extends java.lang.Object
implements java.io.Serializable

Specification of handling details for resource schema. E.g. read-only or read-write attributes, account object classes, etc. TODO: more details This element belongs to ResourceType and should not be used elsewhere. This is a top-level element to make the implementation (JAXB marshall/unmarshall) easier.

Java class for SchemaHandlingType complex type.

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

 <complexType name="SchemaHandlingType">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="accountType" maxOccurs="unbounded" minOccurs="0">
           <complexType>
             <complexContent>
               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
                 <sequence>
                   <element ref="{http://midpoint.evolveum.com/xml/ns/public/common/common-1.xsd}name" minOccurs="0"/>
                   <element ref="{http://midpoint.evolveum.com/xml/ns/public/common/common-1.xsd}description" minOccurs="0"/>
                   <element name="objectClass" type="{http://www.w3.org/2001/XMLSchema}QName"/>
                   <element name="attribute" type="{http://midpoint.evolveum.com/xml/ns/public/common/common-1.xsd}AttributeDescriptionType" maxOccurs="unbounded" minOccurs="0"/>
                   <element name="credentials" minOccurs="0">
                     <complexType>
                       <complexContent>
                         <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
                           <sequence>
                             <element name="outboundPassword" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
                             <element name="randomPasswordLength" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
                           </sequence>
                         </restriction>
                       </complexContent>
                     </complexType>
                   </element>
                 </sequence>
                 <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}string" default="user" />
                 <attribute name="default" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
               </restriction>
             </complexContent>
           </complexType>
         </element>
         <element name="entitlementType" maxOccurs="unbounded" minOccurs="0">
           <complexType>
             <complexContent>
               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
                 <sequence>
                   <element ref="{http://midpoint.evolveum.com/xml/ns/public/common/common-1.xsd}name" minOccurs="0"/>
                   <element name="objectClass" type="{http://www.w3.org/2001/XMLSchema}QName"/>
                   <element name="assignmentProperty">
                     <complexType>
                       <complexContent>
                         <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
                           <attribute name="ref" type="{http://www.w3.org/2001/XMLSchema}QName" />
                           <attribute name="minOccurs" type="{http://www.w3.org/2001/XMLSchema}string" default="1" />
                           <attribute name="maxOccurs" type="{http://www.w3.org/2001/XMLSchema}string" default="1" />
                         </restriction>
                       </complexContent>
                     </complexType>
                   </element>
                 </sequence>
                 <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}string" />
               </restriction>
             </complexContent>
           </complexType>
         </element>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 

See Also:
Serialized Form

Nested Class Summary
static class SchemaHandlingType.AccountType
          Java class for anonymous complex type.
static class SchemaHandlingType.EntitlementType
          Java class for anonymous complex type.
 
Field Summary
protected  java.util.List<SchemaHandlingType.AccountType> accountType
           
protected  java.util.List<SchemaHandlingType.EntitlementType> entitlementType
           
 
Constructor Summary
SchemaHandlingType()
           
 
Method Summary
 java.util.List<SchemaHandlingType.AccountType> getAccountType()
          Gets the value of the accountType property.
 java.util.List<SchemaHandlingType.EntitlementType> getEntitlementType()
          Gets the value of the entitlementType property.
 java.lang.String toString()
          Generates a String representation of the contents of this type.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

accountType

protected java.util.List<SchemaHandlingType.AccountType> accountType

entitlementType

protected java.util.List<SchemaHandlingType.EntitlementType> entitlementType
Constructor Detail

SchemaHandlingType

public SchemaHandlingType()
Method Detail

getAccountType

public java.util.List<SchemaHandlingType.AccountType> getAccountType()
Gets the value of the accountType 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 accountType property.

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

    getAccountType().add(newItem);
 

Objects of the following type(s) are allowed in the list SchemaHandlingType.AccountType


getEntitlementType

public java.util.List<SchemaHandlingType.EntitlementType> getEntitlementType()
Gets the value of the entitlementType 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 entitlementType property.

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

    getEntitlementType().add(newItem);
 

Objects of the following type(s) are allowed in the list SchemaHandlingType.EntitlementType


toString

public java.lang.String toString()
Generates a String representation of the contents of this type. This is an extension method, produced by the 'ts' xjc plugin

Overrides:
toString in class java.lang.Object


Copyright © 2011 evolveum. All Rights Reserved.