Class Validation
- java.lang.Object
-
- com.netgrif.application.engine.importer.model.Validation
-
public class Validation extends java.lang.Object
Java class for validation complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="validation"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="expression" type="{}valid"/> <element name="message" type="{}i18nStringType"/> <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="arguments" type="{}arguments" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected Arguments
arguments
protected Valid
expression
protected I18NStringType
message
protected java.lang.String
name
-
Constructor Summary
Constructors Constructor Description Validation()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Arguments
getArguments()
Gets the value of the arguments property.Valid
getExpression()
Gets the value of the expression property.I18NStringType
getMessage()
Gets the value of the message property.java.lang.String
getName()
Gets the value of the name property.void
setArguments(Arguments value)
Sets the value of the arguments property.void
setExpression(Valid value)
Sets the value of the expression property.void
setMessage(I18NStringType value)
Sets the value of the message property.void
setName(java.lang.String value)
Sets the value of the name property.
-
-
-
Field Detail
-
expression
protected Valid expression
-
message
protected I18NStringType message
-
name
protected java.lang.String name
-
arguments
protected Arguments arguments
-
-
Method Detail
-
getExpression
public Valid getExpression()
Gets the value of the expression property.- Returns:
- possible object is
Valid
-
setExpression
public void setExpression(Valid value)
Sets the value of the expression property.- Parameters:
value
- allowed object isValid
-
getMessage
public I18NStringType getMessage()
Gets the value of the message property.- Returns:
- possible object is
I18NStringType
-
setMessage
public void setMessage(I18NStringType value)
Sets the value of the message property.- Parameters:
value
- allowed object isI18NStringType
-
getName
public java.lang.String getName()
Gets the value of the name property.- Returns:
- possible object is
String
-
setName
public void setName(java.lang.String value)
Sets the value of the name property.- Parameters:
value
- allowed object isString
-
getArguments
public Arguments getArguments()
Gets the value of the arguments property.- Returns:
- possible object is
Arguments
-
-