01: /*
02: * Copyright (c) 2002-2006 by OpenSymphony
03: * All rights reserved.
04: */
05: package com.opensymphony.xwork;
06:
07: /**
08: * Provides an interface in which a call for a validation check can be done.
09: *
10: * @author Jason Carreira
11: * @see ActionSupport
12: * @see com.opensymphony.xwork.interceptor.DefaultWorkflowInterceptor
13: */
14: public interface Validateable {
15:
16: /**
17: * Performs validation.
18: */
19: void validate();
20:
21: }
|