Coverage Report - org.kuali.student.common.dictionary.dto.ValidCharsConstraint
 
Classes in this File Line Coverage Branch Coverage Complexity
ValidCharsConstraint
0%
0/4
N/A
1
 
 1  
 package org.kuali.student.common.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  0
 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  0
         return value;
 19  
     }
 20  
 
 21  
     /**
 22  
      * @param value the value to set
 23  
      */
 24  
     public void setValue(String value) {
 25  0
         this.value = value;
 26  0
     }
 27  
     
 28  
 
 29  
 }