1 /*
2 * $Id: IParameter.java,v 1.1 2007/11/29 12:58:13 oeuillot Exp $
3 *
4 */
5 package org.rcfaces.core.validator;
6
7 /**
8 * @author Olivier Oeuillot (latest modification by $Author: oeuillot $)
9 * @version $Revision: 1.1 $ $Date: 2007/11/29 12:58:13 $
10 */
11 public interface IParameter {
12 String getName();
13
14 String getValue();
15 }