SAML2AuthManager: add new methods to the interface Signed-off-by: Rohit Yadav <rohit.ya...@shapeblue.com>
Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/aaa4b60b Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/aaa4b60b Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/aaa4b60b Branch: refs/heads/master Commit: aaa4b60b23569fff4d27210098a238c38ab2264c Parents: 84b0e9e Author: Rohit Yadav <rohit.ya...@shapeblue.com> Authored: Fri Sep 12 16:27:11 2014 +0200 Committer: Rohit Yadav <rohit.ya...@shapeblue.com> Committed: Fri Sep 12 16:27:11 2014 +0200 ---------------------------------------------------------------------- .../saml2/src/org/apache/cloudstack/saml/SAML2AuthManager.java | 3 +++ 1 file changed, 3 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/aaa4b60b/plugins/user-authenticators/saml2/src/org/apache/cloudstack/saml/SAML2AuthManager.java ---------------------------------------------------------------------- diff --git a/plugins/user-authenticators/saml2/src/org/apache/cloudstack/saml/SAML2AuthManager.java b/plugins/user-authenticators/saml2/src/org/apache/cloudstack/saml/SAML2AuthManager.java index 507fa04..3ee7522 100644 --- a/plugins/user-authenticators/saml2/src/org/apache/cloudstack/saml/SAML2AuthManager.java +++ b/plugins/user-authenticators/saml2/src/org/apache/cloudstack/saml/SAML2AuthManager.java @@ -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();