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

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

There is a newer version: 5.5.43
Show newest version
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) {
		super();
		this.secret = secret;
	}

	public String getSecret() {
		return secret;
	}

	public void setSecret(String secret) {
		this.secret = secret;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy