Class SynchronizationType
- java.lang.Object
-
- com.evolveum.midpoint.xml.ns._public.common.common_3.SynchronizationType
-
- All Implemented Interfaces:
JaxbVisitable
,Serializable
,Cloneable
,org.jvnet.jaxb2_commons.lang.Equals
,org.jvnet.jaxb2_commons.lang.HashCode
public class SynchronizationType extends Object implements Serializable, Cloneable, JaxbVisitable, org.jvnet.jaxb2_commons.lang.Equals, org.jvnet.jaxb2_commons.lang.HashCode
Defines a synchronization properties (configuration) for a resource. This applies to all flavors of synchronization (live sync, reconciliation, import, ...)Java class for SynchronizationType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="SynchronizationType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="objectSynchronizationSorter" type="{http://midpoint.evolveum.com/xml/ns/public/common/common-3}ObjectSynchronizationSorterType" minOccurs="0"/> <element name="objectSynchronization" type="{http://midpoint.evolveum.com/xml/ns/public/common/common-3}ObjectSynchronizationType" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static QName
COMPLEX_TYPE
static ItemName
F_OBJECT_SYNCHRONIZATION
static ItemName
F_OBJECT_SYNCHRONIZATION_SORTER
protected List<ObjectSynchronizationType>
objectSynchronization
protected ObjectSynchronizationSorterType
objectSynchronizationSorter
-
Constructor Summary
Constructors Constructor Description SynchronizationType()
Creates a newSynchronizationType
instance.SynchronizationType(SynchronizationType o)
Creates a newSynchronizationType
instance by deeply copying a givenSynchronizationType
instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
accept(JaxbVisitor visitor)
ObjectSynchronizationType
beginObjectSynchronization()
ObjectSynchronizationSorterType
beginObjectSynchronizationSorter()
SynchronizationType
clone()
Creates and returns a deep copy of this object.boolean
equals(Object object)
boolean
equals(org.jvnet.jaxb2_commons.locator.ObjectLocator thisLocator, org.jvnet.jaxb2_commons.locator.ObjectLocator thatLocator, Object object, org.jvnet.jaxb2_commons.lang.EqualsStrategy strategy)
List<ObjectSynchronizationType>
getObjectSynchronization()
Gets the value of the objectSynchronization property.ObjectSynchronizationSorterType
getObjectSynchronizationSorter()
Gets the value of the objectSynchronizationSorter property.int
hashCode()
int
hashCode(org.jvnet.jaxb2_commons.locator.ObjectLocator locator, org.jvnet.jaxb2_commons.lang.HashCodeStrategy strategy)
SynchronizationType
objectSynchronization(ObjectSynchronizationType value)
SynchronizationType
objectSynchronizationSorter(ObjectSynchronizationSorterType value)
void
setObjectSynchronizationSorter(ObjectSynchronizationSorterType value)
Sets the value of the objectSynchronizationSorter property.String
toString()
Generates a String representation of the contents of this type.
-
-
-
Field Detail
-
objectSynchronizationSorter
protected ObjectSynchronizationSorterType objectSynchronizationSorter
-
objectSynchronization
protected List<ObjectSynchronizationType> objectSynchronization
-
COMPLEX_TYPE
public static final QName COMPLEX_TYPE
-
F_OBJECT_SYNCHRONIZATION_SORTER
public static final ItemName F_OBJECT_SYNCHRONIZATION_SORTER
-
F_OBJECT_SYNCHRONIZATION
public static final ItemName F_OBJECT_SYNCHRONIZATION
-
-
Constructor Detail
-
SynchronizationType
public SynchronizationType()
Creates a newSynchronizationType
instance.
-
SynchronizationType
public SynchronizationType(SynchronizationType o)
Creates a newSynchronizationType
instance by deeply copying a givenSynchronizationType
instance.- Parameters:
o
- The instance to copy.- Throws:
NullPointerException
- ifo
isnull
.
-
-
Method Detail
-
getObjectSynchronizationSorter
public ObjectSynchronizationSorterType getObjectSynchronizationSorter()
Gets the value of the objectSynchronizationSorter property.- Returns:
- possible object is
ObjectSynchronizationSorterType
-
setObjectSynchronizationSorter
public void setObjectSynchronizationSorter(ObjectSynchronizationSorterType value)
Sets the value of the objectSynchronizationSorter property.- Parameters:
value
- allowed object isObjectSynchronizationSorterType
-
getObjectSynchronization
public List<ObjectSynchronizationType> getObjectSynchronization()
Gets the value of the objectSynchronization 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 objectSynchronization property.For example, to add a new item, do as follows:
getObjectSynchronization().add(newItem);
Objects of the following type(s) are allowed in the list
ObjectSynchronizationType
-
toString
public String toString()
Generates a String representation of the contents of this type. This is an extension method, produced by the 'ts' xjc plugin
-
hashCode
public int hashCode(org.jvnet.jaxb2_commons.locator.ObjectLocator locator, org.jvnet.jaxb2_commons.lang.HashCodeStrategy strategy)
- Specified by:
hashCode
in interfaceorg.jvnet.jaxb2_commons.lang.HashCode
-
equals
public boolean equals(org.jvnet.jaxb2_commons.locator.ObjectLocator thisLocator, org.jvnet.jaxb2_commons.locator.ObjectLocator thatLocator, Object object, org.jvnet.jaxb2_commons.lang.EqualsStrategy strategy)
- Specified by:
equals
in interfaceorg.jvnet.jaxb2_commons.lang.Equals
-
objectSynchronizationSorter
public SynchronizationType objectSynchronizationSorter(ObjectSynchronizationSorterType value)
-
beginObjectSynchronizationSorter
public ObjectSynchronizationSorterType beginObjectSynchronizationSorter()
-
objectSynchronization
public SynchronizationType objectSynchronization(ObjectSynchronizationType value)
-
beginObjectSynchronization
public ObjectSynchronizationType beginObjectSynchronization()
-
accept
public void accept(JaxbVisitor visitor)
- Specified by:
accept
in interfaceJaxbVisitable
-
clone
public SynchronizationType clone()
Creates and returns a deep copy of this object.
-
-