Skip to content

Instantly share code, notes, and snippets.

#[validator.isNotNull(value)]
#[validator.isNull(value)]
<validation:is-number value="#[value]" numberType="LONG" minValue="#[min]" maxValue="#[max]" />
<validation:is-number value="#[value]" numberType="LONG" minValue="#[min]" maxValue="#[max]" pattern="#[pattern]" locale="US" />
#[validator.isNumber(payload, numberType, minValue, maxValue)]
#[validator.validateUrl(‘http://www.mulesoft.com’)]
/**
* A component which performs a validation and expresses
* its result through a {@link ValidationResult} object.
* <p/>
* The {@link #validate(MuleEvent)} method receives a
* {@link MuleEvent} in order to make it generic and easy to extend.
* However, that doesn't necessarily mean that all the validation
* is performed with or over the event exclusively. Thread
* safeness is not to be assumed over instances of this class
* since the validator could be stateful.
/*
* Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.com
* The software in this package is published under the terms of the CPAL v1.0
* license, a copy of which has been included with this distribution in the
* LICENSE.txt file.
*/
package org.mule.extension.validation.api;
/**
* The result of a validation
<validation:custom-validator class="com.myproject.CustomValidator" config-ref="validator" />
<mule>
<spring:beans>
<spring:bean id="customValidator" class="com.myproject.CustomValidator" />
</spring:beans>
<flow name="customValidator">
<validation:custom-validator ref="customValidator" />
</flow>
</mule>