All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.adorsys.multibanking.encrypt.UserSecret Maven / Gradle / Ivy

package de.adorsys.multibanking.encrypt;

/**
 * Holds the user custom secret. This will be injected by the security implementation.
 * 
 * @author fpo
 *
 */
public class UserSecret {

	public String secret;
	
	public UserSecret(String secret) {
		this.secret = secret;
	}

	public String getSecret() {
		return secret;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy