1 17 package org.apache.servicemix.soap; 18 19 25 public interface Handler { 26 27 public boolean requireDOM(); 28 29 public void setRequired(boolean required); 30 31 public boolean isRequired(); 32 33 public void onReceive(Context context) throws Exception ; 34 35 public void onReply(Context context) throws Exception ; 36 37 public void onFault(Context context) throws Exception ; 38 39 public void onSend(Context context) throws Exception ; 40 41 public void onAnswer(Context context) throws Exception ; 42 } 43 | Popular Tags |