1 package org.codehaus.xfire.client; 2 3 import org.codehaus.xfire.attachments.Attachments; 4 5 /*** 6 * Base ClientHandler class. 7 * 8 * @author <a href="mailto:dan@envoisolutions.com">Dan Diephouse</a> 9 * @since Nov 1, 2004 10 */ 11 public abstract class AbstractClientHandler 12 implements ClientHandler 13 { 14 public boolean hasRequest() 15 { 16 return true; 17 } 18 19 public Attachments getAttachments() 20 { 21 return null; 22 } 23 }