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

org.adorsys.psd2.pop.ServerKeysHolder Maven / Gradle / Ivy

There is a newer version: 2.2.3
Show newest version
package org.adorsys.psd2.pop;

import com.nimbusds.jose.jwk.JWKSet;

public class ServerKeysHolder {

	private final JWKSet privateKeySet;
	
	private final JWKSet publicKeySet;

	public ServerKeysHolder(JWKSet privateKeySet, JWKSet publicKeySet) {
		super();
		this.privateKeySet = privateKeySet;
		this.publicKeySet = publicKeySet;
	}

	public JWKSet getPrivateKeySet() {
		return privateKeySet;
	}

	public JWKSet getPublicKeySet() {
		return publicKeySet;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy