Class ActionExpressionType
- java.lang.Object
-
- com.evolveum.midpoint.xml.ns._public.model.scripting_3.ScriptingExpressionType
-
- com.evolveum.midpoint.xml.ns._public.model.scripting_3.ActionExpressionType
-
- All Implemented Interfaces:
JaxbVisitable
,Serializable
,Cloneable
,org.jvnet.jaxb2_commons.lang.Equals
,org.jvnet.jaxb2_commons.lang.HashCode
- Direct Known Subclasses:
AbstractExecutionActionExpressionType
,ApplyDefinitionActionExpressionType
,ExecuteScriptActionExpressionType
,GenerateValueActionExpressionType
,LogActionExpressionType
,NotifyActionExpressionType
,PurgeSchemaActionExpressionType
,ResolveReferenceActionExpressionType
,ResumeTaskActionExpressionType
,TestResourceActionExpressionType
public class ActionExpressionType extends ScriptingExpressionType implements Serializable, Cloneable, JaxbVisitable, org.jvnet.jaxb2_commons.lang.Equals, org.jvnet.jaxb2_commons.lang.HashCode
Executes a given action (add, modify, delete, enable, disable, assign, ...)Java class for ActionExpressionType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ActionExpressionType"> <complexContent> <extension base="{http://midpoint.evolveum.com/xml/ns/public/model/scripting-3}ScriptingExpressionType"> <sequence> <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="parameter" type="{http://midpoint.evolveum.com/xml/ns/public/model/scripting-3}ActionParameterValueType" maxOccurs="unbounded" minOccurs="0"/> </sequence> </extension> </complexContent> </complexType>
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static QName
COMPLEX_TYPE
static ItemName
F_PARAMETER
static ItemName
F_TYPE
protected List<ActionParameterValueType>
parameter
protected String
type
-
Constructor Summary
Constructors Constructor Description ActionExpressionType()
Creates a newActionExpressionType
instance.ActionExpressionType(ActionExpressionType o)
Creates a newActionExpressionType
instance by deeply copying a givenActionExpressionType
instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
accept(JaxbVisitor visitor)
ActionParameterValueType
beginParameter()
ActionExpressionType
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<ActionParameterValueType>
getParameter()
Gets the value of the parameter property.String
getType()
Gets the value of the type property.int
hashCode()
int
hashCode(org.jvnet.jaxb2_commons.locator.ObjectLocator locator, org.jvnet.jaxb2_commons.lang.HashCodeStrategy strategy)
ActionExpressionType
parameter(ActionParameterValueType value)
void
setType(String value)
Sets the value of the type property.String
toString()
Generates a String representation of the contents of this type.ActionExpressionType
type(String value)
-
-
-
Constructor Detail
-
ActionExpressionType
public ActionExpressionType()
Creates a newActionExpressionType
instance.
-
ActionExpressionType
public ActionExpressionType(ActionExpressionType o)
Creates a newActionExpressionType
instance by deeply copying a givenActionExpressionType
instance.- Parameters:
o
- The instance to copy.- Throws:
NullPointerException
- ifo
isnull
.
-
-
Method Detail
-
getType
public String getType()
Gets the value of the type property.- Returns:
- possible object is
String
-
setType
public void setType(String value)
Sets the value of the type property.- Parameters:
value
- allowed object isString
-
getParameter
public List<ActionParameterValueType> getParameter()
Gets the value of the parameter 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 parameter property.For example, to add a new item, do as follows:
getParameter().add(newItem);
Objects of the following type(s) are allowed in the list
ActionParameterValueType
-
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- Overrides:
toString
in classScriptingExpressionType
-
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
- Overrides:
hashCode
in classScriptingExpressionType
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classScriptingExpressionType
-
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
- Overrides:
equals
in classScriptingExpressionType
-
equals
public boolean equals(Object object)
- Overrides:
equals
in classScriptingExpressionType
-
type
public ActionExpressionType type(String value)
-
parameter
public ActionExpressionType parameter(ActionParameterValueType value)
-
beginParameter
public ActionParameterValueType beginParameter()
-
accept
public void accept(JaxbVisitor visitor)
- Specified by:
accept
in interfaceJaxbVisitable
- Overrides:
accept
in classScriptingExpressionType
-
clone
public ActionExpressionType clone()
Creates and returns a deep copy of this object.- Overrides:
clone
in classScriptingExpressionType
- Returns:
- A deep copy of this object.
-
-