Package ca.eandb.jdcp.server

Source Code of ca.eandb.jdcp.server.AuthenticationServer

/*
* Copyright (c) 2008 Bradley W. Kimmel
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limitation the rights to use,
* copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following
* conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*/

package ca.eandb.jdcp.server;

import java.rmi.RemoteException;
import java.rmi.server.RMIClientSocketFactory;
import java.rmi.server.RMIServerSocketFactory;
import java.rmi.server.UnicastRemoteObject;
import java.util.UUID;

import javax.security.auth.callback.CallbackHandler;
import javax.security.auth.login.LoginContext;
import javax.security.auth.login.LoginException;


import ca.eandb.jdcp.JdcpUtil;
import ca.eandb.jdcp.remote.AuthenticationService;
import ca.eandb.jdcp.remote.JobService;
import ca.eandb.jdcp.remote.ProtocolVersionException;
import ca.eandb.util.auth.FixedCallbackHandler;

/**
* An <code>AuthenticationService</code> that is used to authenticate users
* for a provided <code>JobService</code>.
* @see ca.eandb.jdcp.remote.JobService
* @author Brad Kimmel
*/
public final class AuthenticationServer extends UnicastRemoteObject implements
    AuthenticationService {

  /**
   * Serialization version ID.
   */
  private static final long serialVersionUID = 6823054390091081114L;

  /**
   * The name of the login configuration to use to create
   * <code>LoginContext</code>s.
   */
  private static final String LOGIN_CONFIGURATION_NAME = "JobService";

  /** The <code>JobService</code> for which to authenticate users. */
  private final JobService service;

  /**
   * Creates a new <code>AuthenticationServer</code>.
   * @param service The <code>JobService</code> to authenticate for.
   * @throws RemoteException If a communication error occurs.
   */
  public AuthenticationServer(JobService service) throws RemoteException {
    this.service = service;
  }

  /**
   * Creates a new <code>AuthenticationServer</code>.
   * @param service The <code>JobService</code> to authenticate for.
   * @param port The port to listen on.
   * @throws RemoteException If a communication error occurs.
   */
  public AuthenticationServer(JobService service, int port) throws RemoteException {
    super(port);
    this.service = service;
  }

  /**
   * Creates a new <code>AuthenticationServer</code>.
   * @param service The <code>JobService</code> to authenticate for.
   * @param port The port to listen on.
   * @param csf
   * @param ssf
   * @throws RemoteException If a communication error occurs.
   */
  public AuthenticationServer(JobService service, int port, RMIClientSocketFactory csf,
      RMIServerSocketFactory ssf) throws RemoteException {
    super(port, csf, ssf);
    this.service = service;
  }

  /* (non-Javadoc)
   * @see ca.eandb.jdcp.remote.AuthenticationService#authenticate(java.lang.String, java.lang.String, java.util.UUID)
   */
  public JobService authenticate(final String username, final String password, UUID protocolVersionId)
      throws RemoteException, LoginException, ProtocolVersionException {

    if (!protocolVersionId.equals(JdcpUtil.PROTOCOL_VERSION_ID)) {
      throw new ProtocolVersionException();
    }

    CallbackHandler handler = FixedCallbackHandler.forNameAndPassword(username, password);
    LoginContext context = new LoginContext(LOGIN_CONFIGURATION_NAME, handler);
    context.login();

    return new JobServiceProxy(context.getSubject(), service);

  }

}
TOP

Related Classes of ca.eandb.jdcp.server.AuthenticationServer

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.