org.kuali.rice.kns.datadictionary.validation.constraint
Class BaseConstraint
java.lang.Object
org.kuali.rice.kns.datadictionary.validation.constraint.BaseConstraint
- All Implemented Interfaces:
- Serializable, Constraint
- Direct Known Subclasses:
- CaseConstraint, MustOccurConstraint, PrerequisiteConstraint, SimpleConstraint, ValidCharactersConstraint
public class BaseConstraint
- extends Object
- implements Constraint
A class that implements the required accessor for label keys. This provides a convenient base class
from which other constraints can be derived.
This class is a direct copy of one that was in Kuali Student.
- Since:
- 1.1
- Author:
- Kuali Rice Team (rice.collab@kuali.org)
- See Also:
- Serialized Form
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
labelKey
protected String labelKey
applyClientSide
protected Boolean applyClientSide
BaseConstraint
public BaseConstraint()
getLabelKey
public String getLabelKey()
- LabelKey should be a single word key. This key is used to find a message to use for this
constraint from available messages. The key is also used for defining/retrieving validation method
names when applicable for ValidCharactersContraints.
If a comma separated list of keys is used, a message will be generated that is a comma separated list of
the messages retrieved for each key.
- Returns:
- See Also:
ValidCharactersConstraint
setLabelKey
public void setLabelKey(String labelKey)
getApplyClientSide
public Boolean getApplyClientSide()
- If this is true, the constraint should be applied on the client side when the user interacts with
a field - if this constraint can be interpreted for client side use. Default is true.
- Returns:
- the applyClientSide
setApplyClientSide
public void setApplyClientSide(Boolean applyClientSide)
- Parameters:
applyClientSide
- the applyClientSide to set
Copyright © 2004-2011 The Kuali Foundation. All Rights Reserved.