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 public class ValidCharsConstraint extends BaseConstraint {
9
10
11 @XmlElement
12 protected String value;
13
14
15
16
17 public String getValue() {
18 return value;
19 }
20
21
22
23
24 public void setValue(String value) {
25 this.value = value;
26 }
27
28
29 }