com.ca.jcs.sdkws.connection
Class SDKWSConnectionDetails

java.lang.Object
  extended by com.ca.jcs.sdkws.connection.SDKWSConnectionDetails

public class SDKWSConnectionDetails
extends Object

Data class for connection details.

Author:
erstr01

Constructor Summary
SDKWSConnectionDetails()
           
 
Method Summary
 String getAxisHome()
          The location of AXIS home (where modules can be found).
 long getAxisTimeout()
          The millisecond value for Axis client timeout.
 String getBasicAuthPassword()
          The HTTP Basic Authentication wssPassword.
 String getBasicAuthUserName()
          The HTTP Basic Authentication user name.
 ConfigurationContext getCtx()
          Returns the AXIS configuration context.
 String getLdapExceptionPrefix()
          The error message prefix.
 String getSslKeystore()
          Return the path to the keystore.
 String getSslKeystorePassword()
           
 String getWssPassword()
          The WSS wssPassword.
 String getWssUsername()
          The WSS user name.
 String getWsURL()
          The endpoint URL.
 boolean isEnabledSSL()
           
 boolean isIncludeTimestamp()
           
 void setAxisHome(String axisHome)
          Set the location of AXIS home (where modules can be found).
 void setAxisTimeout(long axisTimeout)
          The millisecond value for Axis client timeout.
 void setBasicAuthPassword(String basicAuthPassword)
          Set the HTTP Basic Authentication wssPassword.
 void setBasicAuthUserName(String basicAuthUserName)
          Set the HTTP Basic Authentication user name.
 void setCtx(ConfigurationContext ctx)
          Sets the AXIS configuration context.
 void setEnabledSSL(boolean enabledSSL)
           
 void setIncludeTimestamp(boolean includeTimestamp)
           
 void setLdapExceptionPrefix(String ldapExceptionPrefix)
          Set the error message prefix.
 void setSslKeystore(String sslKeystore)
          Set the path to the keystore.
 void setSslKeystorePassword(String sslKeystorePassword)
           
 void setWssPassword(String wssPassword)
          Set the WSS wssPassword.
 void setWssUsername(String wssUsername)
          Set the WSS user name.
 void setWsURL(String wsURL)
          Set the endpoint URL.
 String toString()
          String version of this class.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

SDKWSConnectionDetails

public SDKWSConnectionDetails()
Method Detail

getWsURL

public String getWsURL()
The endpoint URL.

Returns:
the endpoint URL.

setWsURL

public void setWsURL(String wsURL)
Set the endpoint URL.

Parameters:
wsURL - the endpoint URL.

getWssUsername

public String getWssUsername()
The WSS user name.

Returns:
he WSS user name.

setWssUsername

public void setWssUsername(String wssUsername)
Set the WSS user name.

Parameters:
wssUsername - the WSS user name.

getWssPassword

public String getWssPassword()
The WSS wssPassword.

Returns:
the WSS wssPassword.

setWssPassword

public void setWssPassword(String wssPassword)
Set the WSS wssPassword.

Parameters:
wssPassword - the WSS wssPassword.

getAxisHome

public String getAxisHome()
The location of AXIS home (where modules can be found).

Returns:
the location of AXIS home (where modules can be found).

setAxisHome

public void setAxisHome(String axisHome)
Set the location of AXIS home (where modules can be found).

Parameters:
axisHome - the location of AXIS home (where modules can be found).

getAxisTimeout

public long getAxisTimeout()
The millisecond value for Axis client timeout.

Returns:
the millisecond value for Axis client timeout.

setAxisTimeout

public void setAxisTimeout(long axisTimeout)
The millisecond value for Axis client timeout.

Parameters:
axisTimeout - the millisecond value for Axis client timeout.

getLdapExceptionPrefix

public String getLdapExceptionPrefix()
The error message prefix.

Returns:
the error message prefix.

setLdapExceptionPrefix

public void setLdapExceptionPrefix(String ldapExceptionPrefix)
Set the error message prefix.

Parameters:
ldapExceptionPrefix - the error message prefix.

isIncludeTimestamp

public boolean isIncludeTimestamp()
Returns:
the includeTimestamp (in soap security header) setting.

setIncludeTimestamp

public void setIncludeTimestamp(boolean includeTimestamp)
Parameters:
includeTimestamp - the includeTimestamp (in soap security header) setting.

getBasicAuthUserName

public String getBasicAuthUserName()
The HTTP Basic Authentication user name.

Returns:
the HTTP Basic Authentication user name.

setBasicAuthUserName

public void setBasicAuthUserName(String basicAuthUserName)
Set the HTTP Basic Authentication user name.

Parameters:
basicAuthUserName - the HTTP Basic Authentication user name.

getBasicAuthPassword

public String getBasicAuthPassword()
The HTTP Basic Authentication wssPassword.

Returns:
the HTTP Basic Authentication wssPassword.

setBasicAuthPassword

public void setBasicAuthPassword(String basicAuthPassword)
Set the HTTP Basic Authentication wssPassword.

Parameters:
basicAuthPassword - the HTTP Basic Authentication wssPassword.

isEnabledSSL

public boolean isEnabledSSL()
Returns:
true if jcs is ssl enabled.

setEnabledSSL

public void setEnabledSSL(boolean enabledSSL)
Parameters:
enabledSSL - true if jcs is ssl enabled.

getSslKeystore

public String getSslKeystore()
Return the path to the keystore.

Returns:
the path to the keystore.

setSslKeystore

public void setSslKeystore(String sslKeystore)
Set the path to the keystore.

Parameters:
sslKeystore - the path to the keystore.

getSslKeystorePassword

public String getSslKeystorePassword()
Returns:
the wssPassword for ssl keystore.

setSslKeystorePassword

public void setSslKeystorePassword(String sslKeystorePassword)
Parameters:
sslKeystorePassword - the wssPassword for ssl keystore.

getCtx

public ConfigurationContext getCtx()
Returns the AXIS configuration context.

Returns:
the AXIS configuration context.

setCtx

public void setCtx(ConfigurationContext ctx)
Sets the AXIS configuration context.

Parameters:
ctx - the AXIS configuration context.

toString

public String toString()
String version of this class.

Overrides:
toString in class Object
Returns:
the string version of this class.


Created 2011-07-14 13:27 EST