[jboss-cvs] JBossAS SVN: r98760 - projects/javaee/tags/jboss-javaee-parent-6.0.0-alpha-1/jboss-jaspi-api/src/main/javax/security/auth/message/config.
jboss-cvs-commits at lists.jboss.org
jboss-cvs-commits at lists.jboss.org
Tue Dec 22 13:00:13 EST 2009
Author: jaikiran
Date: 2009-12-22 13:00:12 -0500 (Tue, 22 Dec 2009)
New Revision: 98760
Removed:
projects/javaee/tags/jboss-javaee-parent-6.0.0-alpha-1/jboss-jaspi-api/src/main/javax/security/auth/message/config/ClientAuthConfig.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/config/ClientAuthConfig.java
Deleted: projects/javaee/tags/jboss-javaee-parent-6.0.0-alpha-1/jboss-jaspi-api/src/main/javax/security/auth/message/config/ClientAuthConfig.java
===================================================================
--- projects/javaee/tags/jboss-javaee-parent-6.0.0-alpha-1/jboss-jaspi-api/src/main/javax/security/auth/message/config/ClientAuthConfig.java 2009-12-22 18:00:04 UTC (rev 98759)
+++ projects/javaee/tags/jboss-javaee-parent-6.0.0-alpha-1/jboss-jaspi-api/src/main/javax/security/auth/message/config/ClientAuthConfig.java 2009-12-22 18:00:12 UTC (rev 98760)
@@ -1,80 +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.config;
-
-import java.util.Map;
-
-import javax.security.auth.Subject;
-import javax.security.auth.message.AuthException;
-
-//$Id$
-
-/**
- * <p>This interface encapsulates the configuration of ClientAuthContext objects
- * for a message layer and application context (e.g., the messaging context of a
- * specific application, or set of applications).<p>
- * <p>Implementations of this interface are returned by an AuthConfigProvider.</p>
- * <p>Callers interact with a ClientAuthConfig to obtain ClientAuthContext objects
- * suitable for processing a given message exchange at the layer and within the
- * application context of the ClientAuthConfig. Each ClientAuthContext object is
- * responsible for instantiating, initializing, and invoking the one or more
- * ClientAuthModules encapsulated in the ClientAuthContext.</p>
- * <p>After having acquired a ClientAuthContext, a caller operates on the context
- * to cause it to invoke the encapsulated ClientAuthModules to secure client requests
- * and to validate server responses.</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 ClientAuthConfig extends AuthConfig
-{
- /**
- * <p>Get a ClientAuthContext instance from this ClientAuthConfig.</p>
- * <p>The implementation of this method returns a ClientAuthContext instance that
- * encapsulates the ClientAuthModules used to secure and validate requests/responses
- * associated with the given operation.</p>
- * <p>Specifically, this method accesses this ClientAuthConfig object with the argument
- * operation to determine the ClientAuthModules that are to be encapsulated in the
- * returned ClientAuthContext instance.</p>
- * <p>The ClientAuthConfig object establishes the request and response MessagePolicy
- * objects that are passed to the encapsulated modules when they are initialized by the
- * returned ClientAuthContext instance. It is the modules responsibility to enforce
- * these policies when invoked.</p>
- *
- * @param operation an operation identifier used to index the provided config, or null.
- * This value must be identical to the value returned by the getOperation
- * method for all AuthParam objects passed to the secureRequest method
- * of the returned ClientAuthContext.
- * @param properties a Map object that may be used by the caller to augment the
- * properties that will be passed to the encapsulated modules at module
- * initialization. The null value may be passed for this parameter.
- * @return a ClientAuthContext instance that encapsulates the ClientAuthModules used to
- * secure and validate requests/responses associated with the given
- * operation, or null (indicating that no modules are configured).
- * @throws AuthException if this operation fails.
- */
- public ClientAuthContext getAuthContext(String authContextID,
- Subject clientSubject, Map properties)
- throws AuthException;
-}
More information about the jboss-cvs-commits
mailing list