| 1 | |
|
| 2 | |
|
| 3 | |
|
| 4 | |
|
| 5 | |
|
| 6 | |
|
| 7 | |
|
| 8 | |
|
| 9 | |
|
| 10 | |
|
| 11 | |
|
| 12 | |
|
| 13 | |
|
| 14 | |
|
| 15 | |
|
| 16 | |
package org.kuali.student.datadictionary; |
| 17 | |
|
| 18 | |
import org.kuali.rice.kns.datadictionary.validation.constraint.ValidCharactersConstraint; |
| 19 | |
import org.kuali.student.datadictionary.infc.ValidCharactersConstraintInfc; |
| 20 | |
|
| 21 | |
|
| 22 | |
|
| 23 | |
|
| 24 | |
|
| 25 | 0 | public class Student2RiceValidCharactersConstraintConverter { |
| 26 | |
|
| 27 | 0 | private static org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(Student2RiceValidCharactersConstraintConverter.class); |
| 28 | |
|
| 29 | |
public ValidCharactersConstraint convert(ValidCharactersConstraintInfc student) { |
| 30 | 0 | ValidCharactersConstraint rice = new ValidCharactersConstraint (); |
| 31 | 0 | rice.setApplyClientSide(student.isApplyClientSide()); |
| 32 | 0 | rice.setJsValue(student.getJsValue()); |
| 33 | 0 | rice.setLabelKey(student.getLabelKey()); |
| 34 | 0 | rice.setValue (student.getValue()); |
| 35 | 0 | return rice; |
| 36 | |
} |
| 37 | |
} |