Class ObjectDeltaType

java.lang.Object
com.evolveum.prism.xml.ns._public.types_3.ObjectDeltaType
All Implemented Interfaces:
PlainStructured, PlainStructured.WithoutStrategy, JaxbVisitable, Serializable, Cloneable

public class ObjectDeltaType extends Object implements PlainStructured.WithoutStrategy, 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:
  • Field Details

    • 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
    • changeType

      protected ChangeTypeType changeType
    • objectType

      protected QName objectType
    • objectToAdd

      protected ObjectType objectToAdd
    • oid

      protected String oid
    • itemDelta

      protected final List<ItemDeltaType> itemDelta
  • Constructor Details

    • ObjectDeltaType

      public ObjectDeltaType()
  • Method Details

    • 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
    • equals

      public boolean equals(Object obj)
      Overrides:
      equals in class Object
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • accept

      public void accept(JaxbVisitor visitor)
      Specified by:
      accept in interface JaxbVisitable
    • clone

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