public interface ITrustedSignonRequest extends IBiBusHeader
Modifier and Type | Method and Description |
---|---|
void |
addCredential(java.lang.String theName,
java.lang.String theValue)
Adds authentication information, in the form of a name-value pair,
to this request.
|
void |
addEnvVar(java.lang.String theName,
java.lang.String theValue)
Adds an environment variable.
|
void |
addTrustedEnvVar(java.lang.String theName,
java.lang.String theValue)
Adds a trusted environment variable.
|
void |
removeCredential(java.lang.String theName)
Removes all name-value pairs with the specified name from this
request.
|
void |
removeEnvVar(java.lang.String theName)
Removes all environment variables with the specified name.
|
void |
removeTrustedEnvVar(java.lang.String theName)
Removes all trusted environment variables with the given name.
|
void |
setNamespaceID(java.lang.String theNamespaceID)
Sets the unique identifier for the namespace to which this request
should be forwarded.
|
consumeFormField, getContentLocale, getCookieValue, getCredentialValue, getEnvVarValue, getFormFieldValue, getProductLocale, getTrustedEnvVarValue, setCookie
void setNamespaceID(java.lang.String theNamespaceID)
theNamespaceID
- The unique identifier for the namespace to which this request
should be forwarded.void addCredential(java.lang.String theName, java.lang.String theValue)
theName
- The name of the authentication information to add.theValue
- The value of the authentication information to add.void removeCredential(java.lang.String theName)
theName
- The name of the credential to remove.void addEnvVar(java.lang.String theName, java.lang.String theValue)
theName
- The name of the environment variable.theValue
- The value of the environment variable.void removeEnvVar(java.lang.String theName)
theName
- The name of the environment variable to remove.void addTrustedEnvVar(java.lang.String theName, java.lang.String theValue)
theName
- The name of the trusted environment variable.theValue
- The value of the trusted environment variable.void removeTrustedEnvVar(java.lang.String theName)
theName
- The name of the trusted environment variable to remove.