| |
|
| org.apache.wsrp4j.consumer.InitCookieInfo
All known Subclasses: org.apache.wsrp4j.consumer.driver.InitCookieInfoImpl,
InitCookieInfo | public interface InitCookieInfo (Code) | | The init cookie information provides a mean to store
information if a InitCookie call is required before
performing any other wsrp call. Since a call of init cookie may
be required only once for a group or a user per producer, this interface also
offers method to check this call has been done already or not.
As an initCookie call in WSRP can be required on a per group or
per user basis an object implementing this interface can typically
be hold in a user or group session.
Implementations of this interface hold a MarkupPortType stub
to handle cookies correctly
author: Stephan Laertz author: Peter Fischer |
getMarkupInterfaceURL | public String getMarkupInterfaceURL()(Code) | | Get the markup interface URL
the markup interface URL |
isInitCookieDone | public boolean isInitCookieDone()(Code) | | Check wether a initCookie call has been done already or not.
True if an initCookie has been done already |
isInitCookieRequired | public boolean isInitCookieRequired()(Code) | | Check if an initCookie call is generally required. This
does not necessarily say anything if the required initCookie call
has been done already. Use isInitCookieDone for
this purpose.
True if a call of init cookie is generally required. |
setInitCookieDone | public void setInitCookieDone(boolean initCookieDone)(Code) | | Set if an initCookie call has been done already or not.
Parameters: initCookieDone - Set to true if the call has been done; false otherwise |
setInitCookieRequired | public void setInitCookieRequired(boolean initCookieRequired)(Code) | | Set a boolean value to indicate if an initCookie call
needs to be done.
Parameters: initCookieRequired - True if an initCookie call is generally required |
setWSRPBaseService | public void setWSRPBaseService(WSRP_v1_Markup_PortType markupPortType)(Code) | | set the markup interface portType
Parameters: markupPortType - the markup interface portType |
|
|
|