1 package org.wcb.model.service;
2
3 /**
4 * <small>
5 * Copyright (c) 2006 wbogaardt.
6 * Permission is granted to copy, distribute and/or modify this document
7 * under the terms of the GNU Free Documentation License, Version 1.2
8 * or any later version published by the Free Software Foundation;
9 * with no Invariant Sections, no Front-Cover Texts, and no Back-Cover
10 * Texts. A copy of the license is included in the section entitled "GNU
11 * Free Documentation License".
12 * <p/>
13 * $File: $ <br>
14 * $Change: $ submitted by $Author: wbogaardt $ at $DateTime: Mar 29, 2006 8:22:41 AM $ <br>
15 * </small>
16 *
17 * @author wbogaardt
18 * @version 1
19 * Date: Mar 29, 2006
20 * Time: 8:22:41 AM
21 */
22 public interface IValidatorService {
23
24 void setObject(Object vObject);
25
26 Object getObject();
27
28 boolean validate();
29 }