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

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

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

Defines an assignment of value from one place (or expression) to another place. This is supposed to be a general-purpose construct. TODO: merging options This type is marked with jaxb:dom annotation, which will avoid JAXB parsing of it. This is a workaround to a JAXB limitation, which cannot handle more than one "any" elements in a type. See http://java.net/jira/browse/JAXB-798

Java class for ValueAssignmentType complex type.

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

 <complexType name="ValueAssignmentType">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element ref="{http://midpoint.evolveum.com/xml/ns/public/common/common-1.xsd}description" minOccurs="0"/>
         <element ref="{http://midpoint.evolveum.com/xml/ns/public/common/common-1.xsd}valueFilter" maxOccurs="unbounded" minOccurs="0"/>
         <element name="source" type="{http://midpoint.evolveum.com/xml/ns/public/common/common-1.xsd}ExpressionType" minOccurs="0"/>
         <element name="target" type="{http://midpoint.evolveum.com/xml/ns/public/common/common-1.xsd}XPathType"/>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 

See Also:
Serialized Form

Field Summary
protected  java.lang.String description
           
protected  ExpressionType source
           
protected  org.w3c.dom.Element target
           
protected  java.util.List<ValueFilterType> valueFilter
           
 
Constructor Summary
ValueAssignmentType()
           
 
Method Summary
 java.lang.String getDescription()
          Gets the value of the description property.
 ExpressionType getSource()
          Gets the value of the source property.
 org.w3c.dom.Element getTarget()
          Gets the value of the target property.
 java.util.List<ValueFilterType> getValueFilter()
          List of filters that will be applied to the value before it even gets processed by this assignment.
 void setDescription(java.lang.String value)
          Sets the value of the description property.
 void setSource(ExpressionType value)
          Sets the value of the source property.
 void setTarget(org.w3c.dom.Element value)
          Sets the value of the target 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

description

protected java.lang.String description

valueFilter

protected java.util.List<ValueFilterType> valueFilter

source

protected ExpressionType source

target

protected org.w3c.dom.Element target
Constructor Detail

ValueAssignmentType

public ValueAssignmentType()
Method Detail

getDescription

public java.lang.String getDescription()
Gets the value of the description property.

Returns:
possible object is String

setDescription

public void setDescription(java.lang.String value)
Sets the value of the description property.

Parameters:
value - allowed object is String

getValueFilter

public java.util.List<ValueFilterType> getValueFilter()
List of filters that will be applied to the value before it even gets processed by this assignment. The filters will get applied even before the expression. The filters will be executed in chain in the order as specified here. The filters are supposed to "clean up" or transcode the value to comply with usual XML standards. (but see the note in ValueFilterType documentation) Gets the value of the valueFilter 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 valueFilter property.

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

    getValueFilter().add(newItem);
 

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


getSource

public ExpressionType getSource()
Gets the value of the source property.

Returns:
possible object is ExpressionType

setSource

public void setSource(ExpressionType value)
Sets the value of the source property.

Parameters:
value - allowed object is ExpressionType

getTarget

public org.w3c.dom.Element getTarget()
Gets the value of the target property.

Returns:
possible object is Element

setTarget

public void setTarget(org.w3c.dom.Element value)
Sets the value of the target property.

Parameters:
value - allowed object is Element

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.