A
download SSOServiceProvider.java
Language: Java
Copyright: (c) 2005 by Sun Microsystems/Ray Lai under Common Development and Distribution License
LOC: 7
Project Info
identity management security patterns(identitypatterns)
Server: java.net
Type: cvs
...terns\src\com\csp\identity\
   Assertion.java
   AssertionBuilder.java
   AssertionContext.java
   AssertionContextImpl.java
   Attribute.java
   AttributeStatement.java
   ...nticationStatement.java
   ...nDecisionStatement.java
   BinaryToken.java
   CredentialTokenizer.java
   SecurityToken.java
   SSOContext.java
   SSOContextImpl.java
   SSODelegator.java
   SSODelegatorException.java
   SSODelegatorFactory.java
   ...legatorFactoryImpl.java
   ...er_SampleFunction1.java
   SSOServiceProvider.java
   ...rviceProviderImpl1.java
   ...rviceProviderImpl2.java
   Subject.java
   TokenContext.java
   TokenContextImpl.java
   UsernameToken.java
   X509CertToken.java

/*
 * Program:    SSOServiceProvider.java
 * Purpose:    Interface file for managing SSO service provider
 * @author     Ray Lai (ray.lai@sun.com)
 * @version    1.0
 * Updated:    April 19 2005
 * Copyright:  (c) 2005 by Sun Microsystems/Ray Lai under Common Development and Distribution License
 * Remarks:    Full program and documentation will be available under developer.java.net
 *             For simplicity, logger class is removed.
 * ===================================================================================== 
 */

package com.csp.identity;

import com.csp.identity.*;

public interface SSOServiceProvider  {
    
    /**
     * Create and initialize remote security service.
     * Need to pass the SSO context which contains private configuration information.
     * Here this assumes that your SSODelegatorFactory implementation has already
     * verified the security token or performed necessary authentication/authorization.
     *
     * @param SSOContext context that contains private config or session info
     */
    public void createService(com.csp.identity.SSOContext context);
    
    /**
     * Close remote security service.
     * Here this assumes that your SSODelegatorFactory implementation has already
     * verified the security token or performed necessary authentication/authorization.
     */    
    public void closeService();

    /**
     * Reconnect to remote security service.
     * Here this assumes that your SSODelegatorFactory implementation has already
     * verified the security token or performed necessary authentication/authorization.
     */    
    public Object reconnect();
    
}

About Koders | Resources | Downloads | Support | Black Duck | Terms of Service | DMCA | Privacy Policy | Contact Us