
org.xson.tangyuan.validate.RuleDef Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tangyuan-validate Show documentation
Show all versions of tangyuan-validate Show documentation
tangyuan-validate is the data validation component in the tangyuan framework that provides data validation based on XCO objects.
The newest version!
package org.xson.tangyuan.validate;
import java.util.List;
public class RuleDef {
private String id;
private List rule;
public RuleDef(String id, List rule) {
this.id = id;
this.rule = rule;
}
public String getId() {
return id;
}
public List getRule() {
return rule;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy