HTTPStatusCodeVerifier.java |
/* * $Id: HTTPStatusCodeVerifier.java,v 1.11 2010/09/29 17:21:48 agoubard Exp $ * * See the COPYRIGHT file for redistribution and use restrictions. */ package org.xins.common.http; /** * Abstraction of an HTTP status code verifier. * * @version $Revision: 1.11 $ $Date: 2010/09/29 17:21:48 $ * @author <a href="mailto:ernst@ernstdehaan.com">Ernst de Haan</a> * * @since XINS 1.0.0 */ public interface HTTPStatusCodeVerifier { /** * Checks if the specified HTTP status code is considered acceptable or * unacceptable. * * @param code * the HTTP status code to check. * * @return * <code>true</code> if the specified HTTP status code is considered * acceptable, <code>false</code> otherwise. */ boolean isAcceptable(int code); }