[java-identity-provider COMMIT] in /trunk/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/spnego/impl: GSSConte...

noreply at shibboleth.net noreply at shibboleth.net
Tue Oct 20 18:29:12 EDT 2015


Author: scantor
Date: Tue Oct 20 18:29:12 2015
New Revision: 7838

URL: http://svn.shibboleth.net/view/java-identity-provider?rev=7838&view=rev
Log:
Some comments.

Modified:
    trunk/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/spnego/impl/GSSContextAcceptor.java
    trunk/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/spnego/impl/SPNEGOAuthnController.java

Modified: trunk/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/spnego/impl/GSSContextAcceptor.java
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/spnego/impl/GSSContextAcceptor.java?rev=7838&r1=7837&r2=7838&view=diff
==============================================================================
--- trunk/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/spnego/impl/GSSContextAcceptor.java	(original)
+++ trunk/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/spnego/impl/GSSContextAcceptor.java	Tue Oct 20 18:29:12 2015
@@ -34,22 +34,11 @@
 import org.slf4j.LoggerFactory;
 
 /**
- * GSS-API mechanism for Kerberos. Establish a security context
- * 
- * Authenticate for Version 5. It defines the format of context establishment, per-message and context deletion tokens,
- * and uses algorithm identifiers for each cryptosystem in per-message and context deletion tokens.
- * 
- * GSS authorization mechanism.
- * 
- * This is a partial sketch for a simple server program that acts as a GSS context acceptor.
- * 
- * The acceptor is similar to the server in the TCP/IP paradigm, in that it is accepting or rejecting the communication
- * from the initiator.
+ * Helper class that manages context establishment for the SPNEGO GSS-API mechanism.
  * 
  * @see <a href="http://www.ietf.org/rfc/rfc2853.txt">RFC 2853 - Generic Security Service API Version 2 : Java
  *      Bindings</a>
  * @see http://www.ietf.org/rfc/rfc4178.txt
- * 
  */
 public class GSSContextAcceptor {
     

Modified: trunk/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/spnego/impl/SPNEGOAuthnController.java
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/spnego/impl/SPNEGOAuthnController.java?rev=7838&r1=7837&r2=7838&view=diff
==============================================================================
--- trunk/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/spnego/impl/SPNEGOAuthnController.java	(original)
+++ trunk/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/spnego/impl/SPNEGOAuthnController.java	Tue Oct 20 18:29:12 2015
@@ -51,10 +51,11 @@
 import org.springframework.web.servlet.ModelAndView;
 
 /**
- * Controller for running SPNEGO.
+ * MVC controller for managing the SPNEGO exchanges implemented as an {@link ExternalAuthentication} mechanism.
  * 
  * The handler methods either return contents back to the browser by returning an appropriate ResponseEntity<String>
- * object, or they return back to the flow by calling ExternalAuthentication.finishExternalAuthentication() and
+ * object, or they return back to the flow by calling
+ * {@link ExternalAuthentication#finishExternalAuthentication(String, HttpServletRequest, HttpServletResponse)} and
  * returning null. On unrecoverable errors, an exception is thrown.
  */
 @Controller



More information about the commits mailing list