View Javadoc

1   package org.kuali.student.core.dictionary.dto;
2   
3   import javax.xml.bind.annotation.XmlAccessType;
4   import javax.xml.bind.annotation.XmlAccessorType;
5   import javax.xml.bind.annotation.XmlElement;
6   
7   @XmlAccessorType(XmlAccessType.FIELD)
8   public class ValidCharsConstraint extends BaseConstraint {
9   	    
10      // TODO: Should this be a list of values
11      @XmlElement
12      protected String value; // (regex or list of valid chars)
13  
14      /**
15       * @return the value
16       */
17      public String getValue() {
18          return value;
19      }
20  
21      /**
22       * @param value the value to set
23       */
24      public void setValue(String value) {
25          this.value = value;
26      }
27      
28  
29  }