SAML2AuthManager: add new methods to the interface

Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>
This commit is contained in:
Rohit Yadav 2014-09-12 16:27:11 +02:00
parent 84b0e9e96f
commit aaa4b60b23

View File

@ -19,6 +19,7 @@ package org.apache.cloudstack.saml;
import org.apache.cloudstack.api.auth.PluggableAPIAuthenticator;
import java.security.KeyPair;
import java.security.cert.X509Certificate;
public interface SAML2AuthManager extends PluggableAPIAuthenticator {
@ -27,6 +28,8 @@ public interface SAML2AuthManager extends PluggableAPIAuthenticator {
public X509Certificate getIdpSigningKey();
public X509Certificate getIdpEncryptionKey();
public X509Certificate getSpX509Key();
public KeyPair getSpKeyPair();
public String getSpSingleSignOnUrl();
public String getIdpSingleSignOnUrl();