Class Validation
- java.lang.Object
-
- com.netgrif.application.engine.importer.model.Validation
-
public class Validation extends java.lang.ObjectJava 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"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected Validexpressionprotected I18NStringTypemessage
-
Constructor Summary
Constructors Constructor Description Validation()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ValidgetExpression()Gets the value of the expression property.I18NStringTypegetMessage()Gets the value of the message property.voidsetExpression(Valid value)Sets the value of the expression property.voidsetMessage(I18NStringType value)Sets the value of the message property.
-
-
-
Field Detail
-
expression
protected Valid expression
-
message
protected I18NStringType message
-
-
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
-
-