Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'jetty-jaspi/src/main/java/org/eclipse/jetty/security/jaspi/callback/CredentialValidationCallback.java')
-rw-r--r--jetty-jaspi/src/main/java/org/eclipse/jetty/security/jaspi/callback/CredentialValidationCallback.java74
1 files changed, 74 insertions, 0 deletions
diff --git a/jetty-jaspi/src/main/java/org/eclipse/jetty/security/jaspi/callback/CredentialValidationCallback.java b/jetty-jaspi/src/main/java/org/eclipse/jetty/security/jaspi/callback/CredentialValidationCallback.java
new file mode 100644
index 0000000000..e22aaa32e6
--- /dev/null
+++ b/jetty-jaspi/src/main/java/org/eclipse/jetty/security/jaspi/callback/CredentialValidationCallback.java
@@ -0,0 +1,74 @@
+// ========================================================================
+// Copyright (c) 2008-2009 Mort Bay Consulting Pty. Ltd.
+// ------------------------------------------------------------------------
+// All rights reserved. This program and the accompanying materials
+// are made available under the terms of the Eclipse Public License v1.0
+// and Apache License v2.0 which accompanies this distribution.
+// The Eclipse Public License is available at
+// http://www.eclipse.org/legal/epl-v10.html
+// The Apache License v2.0 is available at
+// http://www.opensource.org/licenses/apache2.0.php
+// You may elect to redistribute this code under either of these licenses.
+// ========================================================================
+
+
+package org.eclipse.jetty.security.jaspi.callback;
+
+import javax.security.auth.Subject;
+import javax.security.auth.callback.Callback;
+
+import org.eclipse.jetty.http.security.Credential;
+
+/**
+ * CredentialValidationCallback
+ *
+ * Store a jetty Credential for a user so that it can be
+ * validated by jaspi
+ */
+public class CredentialValidationCallback implements Callback
+{
+ private Credential _credential;
+ private boolean _result;
+ private Subject _subject;
+ private String _userName;
+
+
+ public CredentialValidationCallback (Subject subject, String userName, Credential credential)
+ {
+ _subject = subject;
+ _userName = userName;
+ _credential = credential;
+ }
+
+ public Credential getCredential ()
+ {
+ return _credential;
+ }
+
+ public void clearCredential ()
+ {
+ _credential = null;
+ }
+
+ public boolean getResult()
+ {
+ return _result;
+ }
+
+ public javax.security.auth.Subject getSubject()
+ {
+ return _subject;
+ }
+
+ public java.lang.String getUsername()
+ {
+ return _userName;
+ }
+
+ public void setResult(boolean result)
+ {
+ _result = result;
+ }
+
+
+}

Back to the top