nz.co.senanque.validationengine.fieldvalidators.DigitsValidator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of madura-objects Show documentation
Show all versions of madura-objects Show documentation
This is essentially a JAXB/XJC plugin that adds automatic validation to the generated Java classes.
You define business objects in an XSD file, pass it through XJC and the plugin will add the validation code.
It uses information in the XSD to pick up validation, and you can specify extensions to that in the XSD. The resulting
Java classes check for validity when the setter is called and they reject attempts to set invalid values (this is a difference from other validation frameworks). The Java classes also expose a metadata interface to make it easy for UIs to generate, say, lists of options for a select box.
The validation framework handles single field validation but you can inject a rule engine (or several) to handle cross field validation.
But to any Java code the objects still look like ordinary Java beans. The surrounding application is unaware that they are anything different until they throw an exception. This makes it easy to use with frameworks that expect Java beans, and most of them do.
/*******************************************************************************
* Copyright (c)2014 Prometheus Consulting
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*******************************************************************************/
package nz.co.senanque.validationengine.fieldvalidators;
import nz.co.senanque.validationengine.ValidationException;
import nz.co.senanque.validationengine.annotations.Digits;
import nz.co.senanque.validationengine.metadata.PropertyMetadata;
/**
* Used to validate the number of digits. There are two components: integer digits and fractonal digits.
*
* @author Roger Parkinson
* @version $Revision: 1.4 $
*/
public class DigitsValidator implements FieldValidator
{
private int m_fractionalDigits;
private int m_integerDigits;
private String m_message;
private PropertyMetadata m_propertyMetadata;
/* (non-Javadoc)
* @see nz.co.senanque.validationengine.annotations1.FieldValidator#init(java.lang.annotation.Annotation)
*/
public void init(Digits annotation, PropertyMetadata propertyMetadata)
{
m_integerDigits = (annotation.integerDigits()==null)?-1:Integer.parseInt(annotation.integerDigits());
m_fractionalDigits = (annotation.fractionalDigits()==null)?-1:Integer.parseInt(annotation.fractionalDigits());
m_propertyMetadata = propertyMetadata;
m_message = annotation.message();
}
public void init(DigitDTO annotation, PropertyMetadata propertyMetadata)
{
m_integerDigits = (annotation.integerDigits()==null)?-1:Integer.parseInt(annotation.integerDigits());
m_fractionalDigits = (annotation.fractionalDigits()==null)?-1:Integer.parseInt(annotation.fractionalDigits());
m_propertyMetadata = propertyMetadata;
m_message = annotation.message();
}
/* (non-Javadoc)
* @see nz.co.senanque.validationengine.annotations1.FieldValidator#validate(java.lang.Object)
*/
public void validate(Object o)
{
String s = String.valueOf(o);
int i = s.indexOf(".");
if (i == -1)
{
if ((m_integerDigits != -1 && s.length() > m_integerDigits))
{
String message = m_propertyMetadata.getMessageSourceAccessor().getMessage(m_message, new Object[]{ m_propertyMetadata.getLabelName(), m_integerDigits,m_fractionalDigits, String.valueOf(o) });
throw new ValidationException(message);
}
}
else
{
if (m_integerDigits != -1 && s.length() > m_integerDigits)
{
String message = m_propertyMetadata.getMessageSourceAccessor().getMessage(m_message, new Object[]{ m_propertyMetadata.getLabelName(), m_integerDigits,m_fractionalDigits,String.valueOf(o) });
throw new ValidationException(message);
}
if (m_fractionalDigits != -1 && (s.length()-(i+1)) > m_fractionalDigits)
{
String message = m_propertyMetadata.getMessageSourceAccessor().getMessage(m_message, new Object[]{ m_propertyMetadata.getLabelName(),m_integerDigits,m_fractionalDigits, String.valueOf(o) });
throw new ValidationException(message);
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy