Class ObjectDeltaType

  • All Implemented Interfaces:
    JaxbVisitable, Serializable

    public class ObjectDeltaType
    extends Object
    implements Serializable, JaxbVisitable
    Describes a change of a specific object.

    Java class for ObjectDeltaType complex type.

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

     <complexType name="ObjectDeltaType">
       <complexContent>
         <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
           <sequence>
             <element name="changeType" type="{http://prism.evolveum.com/xml/ns/public/types-3}ChangeTypeType"/>
             <element name="objectType" type="{http://www.w3.org/2001/XMLSchema}QName"/>
             <element name="objectToAdd" minOccurs="0">
               <complexType>
                 <complexContent>
                   <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
                     <sequence>
                       <any processContents='lax'/>
                     </sequence>
                   </restriction>
                 </complexContent>
               </complexType>
             </element>
             <element name="oid" type="{http://www.w3.org/2001/XMLSchema}string"/>
             <element name="modification" type="{http://prism.evolveum.com/xml/ns/public/types-3}ItemDeltaType" maxOccurs="unbounded" minOccurs="0"/>
           </sequence>
         </restriction>
       </complexContent>
     </complexType>
     
    See Also:
    Serialized Form
    • Field Detail

      • objectType

        protected QName objectType
      • COMPLEX_TYPE

        public static final QName COMPLEX_TYPE
      • F_CHANGE_TYPE

        public static final QName F_CHANGE_TYPE
      • F_OBJECT_TYPE

        public static final QName F_OBJECT_TYPE
      • F_OBJECT_TO_ADD

        public static final QName F_OBJECT_TO_ADD
      • F_ITEM_DETLA

        public static final QName F_ITEM_DETLA
    • Constructor Detail

      • ObjectDeltaType

        public ObjectDeltaType()
    • Method Detail

      • getChangeType

        public ChangeTypeType getChangeType()
        Gets the value of the changeType property.
        Returns:
        possible object is ChangeTypeType
      • setChangeType

        public void setChangeType​(ChangeTypeType value)
        Sets the value of the changeType property.
        Parameters:
        value - allowed object is ChangeTypeType
      • getObjectType

        public QName getObjectType()
        Gets the value of the objectType property.
        Returns:
        possible object is QName
      • setObjectType

        public void setObjectType​(QName value)
        Sets the value of the objectType property.
        Parameters:
        value - allowed object is QName
      • getObjectToAdd

        public ObjectType getObjectToAdd()
        Gets the value of the objectToAdd property.
      • setObjectToAdd

        public <T extends ObjectType> void setObjectToAdd​(T value)
        Sets the value of the objectToAdd property.
      • getOid

        public String getOid()
        Gets the value of the oid property.
        Returns:
        possible object is String
      • setOid

        public void setOid​(String value)
        Sets the value of the oid property.
        Parameters:
        value - allowed object is String
      • getItemDelta

        public List<ItemDeltaType> getItemDelta()
        Gets the value of the modification 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 modification property.

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

            getModification().add(newItem);
         

        Objects of the following type(s) are allowed in the list ItemDeltaType

      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object
      • clone

        public ObjectDeltaType clone()
        Clones the object (objectToAdd is cloned using reflection, assuming it is a subclass of ObjectType, that has public clone() method)
        Overrides:
        clone in class Object
        Returns:
        copy of the object