public class WebPBEConfig extends SimplePBEConfig
Implementation for PBEConfig
which can be used from the
Web PBE Config infrastructure (Filter + Servlet) to set the
password for an encryptor from the web at initialization time.
For an encryptor to be assigned a password from the web, it only has to be assigned a WebPBEConfig object, which must be initialized with both a unique name an a validation word. The name will identify the config object (and thus the encryptor) and the validation word will make sure that only an authorized person (for example, the application deployer) sets the passwords.
As this class extends SimplePBEConfig
, parameter values
can be also set with the usual setX methods.
For any of the configuration parameters, if its setX method is not called, a null value will be returned by the corresponding getX method.
Constructor and Description |
---|
WebPBEConfig()
Creates a new WebPBEConfig instance.
|
Modifier and Type | Method and Description |
---|---|
String |
getName()
Returns the name by which this WebPBEConfig object will be identified
from the web.
|
String |
getValidationWord()
Returns the validation word which will be asked from the web to the
person setting the password for the encryptor this config object belongs
to.
|
boolean |
isComplete()
Returns whether this config object is complete or not (both name and
validation word have been set).
|
void |
setName(String name)
Sets the name by which this WebPBEConfig object will be identified
from the web.
|
void |
setValidationWord(String validation)
Sets the validation word which will be asked from the web to the
person setting the password for the encryptor this config object belongs
to.
|
cleanPassword, getAlgorithm, getKeyObtentionIterations, getPassword, getPasswordCharArray, getPoolSize, getProvider, getProviderName, getSaltGenerator, setAlgorithm, setKeyObtentionIterations, setKeyObtentionIterations, setPassword, setPasswordCharArray, setPoolSize, setPoolSize, setProvider, setProviderClassName, setProviderName, setSaltGenerator, setSaltGeneratorClassName
public String getName()
Returns the name by which this WebPBEConfig object will be identified from the web. This name must be unique for each WebPBEConfig object.
public void setName(String name)
Sets the name by which this WebPBEConfig object will be identified from the web. This name must be unique for each WebPBEConfig object.
name
- the unique name which will identify this config object.public String getValidationWord()
Returns the validation word which will be asked from the web to the person setting the password for the encryptor this config object belongs to. This validation word will make sure that only an authorized person (for example, the application deployer) sets the value for the encryption password.
public void setValidationWord(String validation)
Sets the validation word which will be asked from the web to the person setting the password for the encryptor this config object belongs to. This validation word will make sure that only an authorized person (for example, the application deployer) sets the value for the encryption password.
validation
- the validation word to be assigned to this config objectpublic boolean isComplete()
Returns whether this config object is complete or not (both name and validation word have been set). Intended for internal use only.
Copyright © 2019 JBoss by Red Hat. All rights reserved.