站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > JBoss 4.0.1 sp1 webservice API Documentation 英文版文档

Stub (JBossWS API) - JBoss 4.0.1 sp1 webservice API Documentation 英文版文档


org.jboss.webservice.client
Interface Stub

All Superinterfaces:
javax.xml.rpc.Stub

public interface Stub
extends javax.xml.rpc.Stub

JBossWS client stubs implement this interface. It provides access to the standard properties via convenience methods and adds some propriatary properties as well. for an implementation of the interface see PortProxy

Since:
09-Nov-2004
Author:
Thomas.Diesler@jboss.org

Field Summary
static String CLIENT_TIMEOUT_PROPERTY
          Client timeout property
 
Fields inherited from interface javax.xml.rpc.Stub
ENDPOINT_ADDRESS_PROPERTY, PASSWORD_PROPERTY, SESSION_MAINTAIN_PROPERTY, USERNAME_PROPERTY
 
Method Summary
 void addAttachment(String contentID, Object mimepart)
           
 Object getAttachment(String contentID)
           
 Iterator getAttachmentIdentifiers()
           
 String getEndpointAddress()
           
 String getPassword()
           
 Boolean getSessionMaintain()
           
 Integer getTimeout()
           
 String getUsername()
           
 void removeAttachment(String contentID)
           
 void setEndpointAddress(String endpoint)
           
 void setPassword(String password)
           
 void setSessionMaintain(Boolean maintainSession)
           
 void setTimeout(Integer timeout)
           
 void setUsername(String username)
           
 
Methods inherited from interface javax.xml.rpc.Stub
_getProperty, _getPropertyNames, _setProperty
 

Field Detail

CLIENT_TIMEOUT_PROPERTY

public static final String CLIENT_TIMEOUT_PROPERTY
Client timeout property

See Also:
Constant Field Values
Method Detail

getUsername

public String getUsername()

setUsername

public void setUsername(String username)

getPassword

public String getPassword()

setPassword

public void setPassword(String password)

getEndpointAddress

public String getEndpointAddress()

setEndpointAddress

public void setEndpointAddress(String endpoint)

getSessionMaintain

public Boolean getSessionMaintain()

setSessionMaintain

public void setSessionMaintain(Boolean maintainSession)

getTimeout

public Integer getTimeout()

setTimeout

public void setTimeout(Integer timeout)

addAttachment

public void addAttachment(String contentID,
                          Object mimepart)

removeAttachment

public void removeAttachment(String contentID)

getAttachmentIdentifiers

public Iterator getAttachmentIdentifiers()

getAttachment

public Object getAttachment(String contentID)


Copyright © 2002 JBoss Group, LLC. All Rights Reserved.