1 7 8 package org.jboss.webservice.client; 10 11 import java.util.Iterator ; 12 13 15 16 27 public interface Stub extends javax.xml.rpc.Stub 28 { 29 30 static final String CLIENT_TIMEOUT_PROPERTY = "org.jboss.webservice.client.timeout"; 31 32 String getUsername(); 33 34 void setUsername(String username); 35 36 String getPassword(); 37 38 void setPassword(String password); 39 40 String getEndpointAddress(); 41 42 void setEndpointAddress(String endpoint); 43 44 Boolean getSessionMaintain(); 45 46 void setSessionMaintain(Boolean maintainSession); 47 48 Integer getTimeout(); 49 50 void setTimeout(Integer timeout); 51 52 void addAttachment(String contentID, Object mimepart); 53 54 void removeAttachment(String contentID); 55 56 Iterator getAttachmentIdentifiers(); 57 58 Object getAttachment(String contentID); 59 60 Object getTransportOption(String option); 61 62 void setTransportOption(String option, Object value); 63 } | Popular Tags |