1 6 7 28 package javax.xml.soap; 29 30 39 public interface SOAPHeaderElement extends SOAPElement { 40 41 57 public void setActor(String actorURI); 58 59 72 public void setRole(String uri) throws SOAPException ; 73 74 83 public String getActor(); 84 85 96 public String getRole(); 97 98 115 public void setMustUnderstand(boolean mustUnderstand); 116 117 125 public boolean getMustUnderstand(); 126 127 150 public void setRelay(boolean relay) throws SOAPException ; 151 152 167 public boolean getRelay(); 168 } 169 | Popular Tags |