Class AssignmentPathType
- java.lang.Object
-
- com.evolveum.midpoint.xml.ns._public.common.common_3.AssignmentPathType
-
- All Implemented Interfaces:
JaxbVisitable
,Serializable
,Cloneable
,org.jvnet.jaxb2_commons.lang.Equals
,org.jvnet.jaxb2_commons.lang.HashCode
public class AssignmentPathType extends Object implements Serializable, Cloneable, JaxbVisitable, org.jvnet.jaxb2_commons.lang.Equals, org.jvnet.jaxb2_commons.lang.HashCode
Java class for AssignmentPathType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="AssignmentPathType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="segment" type="{http://midpoint.evolveum.com/xml/ns/public/common/common-3}AssignmentPathSegmentType" 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_SEGMENT
protected List<AssignmentPathSegmentType>
segment
-
Constructor Summary
Constructors Constructor Description AssignmentPathType()
Creates a newAssignmentPathType
instance.AssignmentPathType(AssignmentPathType o)
Creates a newAssignmentPathType
instance by deeply copying a givenAssignmentPathType
instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
accept(JaxbVisitor visitor)
AssignmentPathSegmentType
beginSegment()
AssignmentPathType
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<AssignmentPathSegmentType>
getSegment()
Gets the value of the segment property.int
hashCode()
int
hashCode(org.jvnet.jaxb2_commons.locator.ObjectLocator locator, org.jvnet.jaxb2_commons.lang.HashCodeStrategy strategy)
AssignmentPathType
segment(AssignmentPathSegmentType value)
String
toString()
Generates a String representation of the contents of this type.
-
-
-
Field Detail
-
segment
protected List<AssignmentPathSegmentType> segment
-
COMPLEX_TYPE
public static final QName COMPLEX_TYPE
-
F_SEGMENT
public static final ItemName F_SEGMENT
-
-
Constructor Detail
-
AssignmentPathType
public AssignmentPathType()
Creates a newAssignmentPathType
instance.
-
AssignmentPathType
public AssignmentPathType(AssignmentPathType o)
Creates a newAssignmentPathType
instance by deeply copying a givenAssignmentPathType
instance.- Parameters:
o
- The instance to copy.- Throws:
NullPointerException
- ifo
isnull
.
-
-
Method Detail
-
getSegment
public List<AssignmentPathSegmentType> getSegment()
Gets the value of the segment 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 segment property.For example, to add a new item, do as follows:
getSegment().add(newItem);
Objects of the following type(s) are allowed in the list
AssignmentPathSegmentType
-
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
-
segment
public AssignmentPathType segment(AssignmentPathSegmentType value)
-
beginSegment
public AssignmentPathSegmentType beginSegment()
-
accept
public void accept(JaxbVisitor visitor)
- Specified by:
accept
in interfaceJaxbVisitable
-
clone
public AssignmentPathType clone()
Creates and returns a deep copy of this object.
-
-