org.kuali.student.r2.common.datadictionary.util
Class CriteriaValidatorParser
java.lang.Object
org.kuali.student.r2.common.datadictionary.util.CriteriaValidatorParser
public class CriteriaValidatorParser
- extends Object
A class that validates the criteria against the dictionary
It also sets the parsedValues and parsedOperators so they may be used in the implementation
The call sequence is sometehing like this:
- construct this validator
- Configure this validator with criteria to be valiated
- Get the dictionary entry of the object to be validated by calling DataDictionaryServiceInfc.getDataDictionaryEntry (the ref object's URI)
- Configure this validator with the dictionary entry that you just got from the dictionary
- Call the validate () method which will throw exceptions if problems
- get the parsed values (@see getParsedValues ()) and use them in the implementation
- Get the parsed operators and use in the implementation, if you want
- Author:
- nwright
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
CriteriaValidatorParser
public CriteriaValidatorParser()
getCriteria
public Criteria getCriteria()
setCriteria
public void setCriteria(Criteria criteria)
getDictionaryEntry
public DictionaryEntry getDictionaryEntry()
setDictionaryEntry
public void setDictionaryEntry(DictionaryEntry dictionaryEntry)
getParsedOperators
public List<CriteriaValidatorParser.Operator> getParsedOperators()
- Get the string operators translated as an Operator enum
- Returns:
- list of operators in the same ordinal position as the supplied operators in the list of ComparisonInfc objects
getParsedValues
public List<Object> getParsedValues()
- The values parsed as their respective data types, String, Date, Integer, etc.
Special considerations:
IN operators return a List of one or more parsed values who's order is the samne as the order in the ComparisonInfc
BETWEEN operators return a list of two parsed values who's values coorespond to the from to values of a between operation.
- Returns:
- a list of parsed values in the same ordinal positions as the unparsed values in the list of ComparisonInfc objects
validate
public void validate()
throws InvalidParameterException,
OperationFailedException
- Validate the criteria thowing an InvalidParameterException if there are problems
TODO: Consider getting all the errors and throw them as a group instead of as we find them
- Throws:
InvalidParameterException
OperationFailedException
Copyright © 2004-2012 The Kuali Foundation. All Rights Reserved.