1 /***************************************************************************2 * Copyright 2001-2003 The eXo Platform SARL All rights reserved. *3 * Please look at license.txt in info directory for more license detail. *4 **************************************************************************/5 package org.exoplatform.test.web.validator;6 7 import org.exoplatform.test.web.ExoWebClient;8 import com.meterware.httpunit.*;9 /**10 * May 21, 200411 * @author: Tuan Nguyen12 * @email: tuan08@users.sourceforge.net13 * @version: $Id: Validator.java,v 1.1 2004/10/11 23:36:06 tuan08 Exp $14 **/15 public interface Validator {16 public String getName() ;17 public String getDescription() ;18 public boolean validate(WebResponse response, ExoWebClient client) throws Exception ;19 20 }21