[jboss-cvs] JBossAS SVN: r98766 - projects/javaee/tags/jboss-javaee-parent-6.0.0-alpha-1/jboss-jaspi-api/src/main/javax/security/auth/message/module.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Dec 22 13:01:03 EST 2009


Author: jaikiran
Date: 2009-12-22 13:01:03 -0500 (Tue, 22 Dec 2009)
New Revision: 98766

Removed:
   projects/javaee/tags/jboss-javaee-parent-6.0.0-alpha-1/jboss-jaspi-api/src/main/javax/security/auth/message/module/ServerAuthModule.java
Log:
Autoversioning commit:  a non-deltaV client made a change to
/projects/javaee/tags/jboss-javaee-parent-6.0.0-alpha-1/jboss-jaspi-api/src/main/javax/security/auth/message/module/ServerAuthModule.java

Deleted: projects/javaee/tags/jboss-javaee-parent-6.0.0-alpha-1/jboss-jaspi-api/src/main/javax/security/auth/message/module/ServerAuthModule.java
===================================================================
--- projects/javaee/tags/jboss-javaee-parent-6.0.0-alpha-1/jboss-jaspi-api/src/main/javax/security/auth/message/module/ServerAuthModule.java	2009-12-22 18:00:56 UTC (rev 98765)
+++ projects/javaee/tags/jboss-javaee-parent-6.0.0-alpha-1/jboss-jaspi-api/src/main/javax/security/auth/message/module/ServerAuthModule.java	2009-12-22 18:01:03 UTC (rev 98766)
@@ -1,77 +0,0 @@
-/*
-  * JBoss, Home of Professional Open Source
-  * Copyright 2005, JBoss Inc., and individual contributors as indicated
-  * by the @authors tag. See the copyright.txt in the distribution for a
-  * full listing of individual contributors.
-  *
-  * This is free software; you can redistribute it and/or modify it
-  * under the terms of the GNU Lesser General Public License as
-  * published by the Free Software Foundation; either version 2.1 of
-  * the License, or (at your option) any later version.
-  *
-  * This software is distributed in the hope that it will be useful,
-  * but WITHOUT ANY WARRANTY; without even the implied warranty of
-  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-  * Lesser General Public License for more details.
-  *
-  * You should have received a copy of the GNU Lesser General Public
-  * License along with this software; if not, write to the Free
-  * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
-  * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
-  */
-package javax.security.auth.message.module;
-
-import java.util.Map;
-
-import javax.security.auth.callback.CallbackHandler;
-import javax.security.auth.message.AuthException;
-import javax.security.auth.message.MessagePolicy;
-import javax.security.auth.message.ServerAuth;
-
-//$Id$
-
-/**
- *  <p>A ServerAuthModule validates client requests and secures responses 
- *  back to the client.</p>
- *  <p>A module implementation should assume it may be used to secure different 
- *  requests as different clients. A module should also assume it may be used 
- *  concurrently by multiple callers. It is the module implementation’s responsibility 
- *  to properly save and restore any state as necessary. A module that does not need 
- *  to do so may remain completely stateless. Every implementation of the interface 
- *  must provide a public zero argument contructor.</p>
- *  
- *  @author <a href="mailto:Anil.Saldhana at jboss.org">Anil Saldhana</a>
- *  @author Charlie Lai, Ron Monzillo (Javadoc for JSR-196)</a> 
- *  @since  May 12, 2006 
- *  @version $Revision$
- */
-public interface ServerAuthModule extends ServerAuth 
-{
-   /**
-    * Get the one or more Class objects representing the message 
-    * types supported by the module.
-    * @return an array of Class objects where each element defines a message 
-    *         type supported by the module. A module should return an array 
-    *         containing at least one element. An empty array indicates that the
-    *         module will attempt to support any message type. This method never 
-    *         returns null.
-    */
-   public java.lang.Class[] getSupportedMessageTypes();
-   
-   /**
-    * <p>Initialize this module with request and response message policies to 
-    *    enforce, a CallbackHandler, and any module-specific configuration 
-    *    properties.</p>
-    * <p>The request policy and the response policy must not both be null.</p>
-    * 
-    * @param requestPolicy the request policy this module must enforce, or null.
-    * @param responsePolicy the response policy this module must enforce, or null.
-    * @param handler CallbackHandler used to request information.
-    * @param options a Map of module-specific configuration properties.
-    * @throws AuthException - if module initialization fails, including for the case 
-    *                         where the options argument contains elements that are 
-    *                         not supported by the module.
-    */
-   public void initialize(MessagePolicy requestPolicy, MessagePolicy responsePolicy,
-         CallbackHandler handler, Map options) throws AuthException;
-}




More information about the jboss-cvs-commits mailing list