All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.xson.tangyuan.validate.RuleDef Maven / Gradle / Ivy

Go to download

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