org.jasypt.encryption.pbe.config.WebStringPBEConfig Maven / Gradle / Ivy
/*
* =============================================================================
*
* Copyright (c) 2007-2010, The JASYPT team (http://www.jasypt.org)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* =============================================================================
*/
package org.jasypt.encryption.pbe.config;
import org.jasypt.commons.CommonUtils;
import org.jasypt.encryption.pbe.config.StringPBEConfig;
/**
*
* Implementation for {@link StringPBEConfig} 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 {@link 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.
*
*
* @since 1.3
*
* @author Daniel Fernández
*
*/
public class WebStringPBEConfig
extends WebPBEConfig
implements StringPBEConfig {
private String stringOutputType = null;
/**
*
* Creates a new WebStringPBEConfig instance.
*
*/
public WebStringPBEConfig() {
super();
}
/**
*
* Sets the the form in which String output
* will be encoded. Available encoding types are:
*
*
* - base64 (default)
* - hexadecimal
*
*
* If not set, null will be returned.
*
*
* @param stringOutputType the string output type.
*/
public void setStringOutputType(final String stringOutputType) {
this.stringOutputType =
CommonUtils.
getStandardStringOutputType(stringOutputType);
}
public String getStringOutputType() {
return this.stringOutputType;
}
}