Package org.jdesktop.wonderland.servermanager.server

Source Code of org.jdesktop.wonderland.servermanager.server.ServerManagerConnectionHandler

/**
* Project Wonderland
*
* Copyright (c) 2004-2009, Sun Microsystems, Inc., All Rights Reserved
*
* Redistributions in source code form must reproduce the above
* copyright and this condition.
*
* The contents of this file are subject to the GNU General Public
* License, Version 2 (the "License"); you may not use this file
* except in compliance with the License. A copy of the License is
* available at http://www.opensource.org/licenses/gpl-license.php.
*
* Sun designates this particular file as subject to the "Classpath"
* exception as provided by Sun in the License file that accompanied
* this code.
*/
package org.jdesktop.wonderland.servermanager.server;

import java.util.Properties;
import java.util.Set;
import org.jdesktop.wonderland.common.comms.ConnectionType;
import org.jdesktop.wonderland.common.messages.Message;
import org.jdesktop.wonderland.common.security.Action;
import org.jdesktop.wonderland.server.comms.ClientConnectionHandler;
import com.sun.sgs.app.ClientSession;
import java.io.Serializable;
import java.util.logging.Logger;
import org.jdesktop.wonderland.modules.security.server.service.GroupMemberResource;
import org.jdesktop.wonderland.server.comms.SecureClientConnectionHandler;
import org.jdesktop.wonderland.server.comms.WonderlandClientID;
import org.jdesktop.wonderland.server.comms.WonderlandClientSender;
import org.jdesktop.wonderland.server.security.Resource;
import org.jdesktop.wonderland.servermanager.common.PingRequestMessage;
import org.jdesktop.wonderland.servermanager.common.PingResponseMessage;
import org.jdesktop.wonderland.servermanager.common.ServerManagerConnectionType;

/**
* Test listener, will eventually support Server Manager
*
* @author paulby
*/
public class ServerManagerConnectionHandler
        implements SecureClientConnectionHandler, Serializable
{
    private static final Logger logger =
            Logger.getLogger(ServerManagerConnectionHandler.class.getName());
   
    public ServerManagerConnectionHandler() {
        super();
    }

    public Resource checkConnect(WonderlandClientID clientID,
                                 Properties properties)
    {
        return new GroupMemberResource("admin");
    }

    public ConnectionType getConnectionType() {
        return ServerManagerConnectionType.CONNECTION_TYPE;
    }

    public void registered(WonderlandClientSender sender) {
        logger.info("Sever manager connection registered");
    }

    public void clientConnected(WonderlandClientSender sender,
                                WonderlandClientID clientID,
                                Properties properties)
    {
        logger.fine("ServerManager client connected");
    }

    public void connectionRejected(WonderlandClientID clientID) {
        logger.fine("ServerManager client rejected");
    }

    public Resource checkMessage(WonderlandClientID clientID, Message message) {
        return null;
    }

    public void messageReceived(WonderlandClientSender sender,
                                WonderlandClientID clientID,
                                Message message)
    {
        if (message instanceof PingRequestMessage) {
            logger.fine("Received ping message");
            PingRequestMessage req = (PingRequestMessage) message;
            PingResponseMessage resp = new PingResponseMessage(req);
            sender.send(clientID, resp);
        }
    }


    public boolean messageRejected(WonderlandClientSender sender,
                                   WonderlandClientID clientID, Message message,
                                   Set<Action> requested, Set<Action> granted)
    {
        logger.fine("ServerManager message rejected");
        return true;
    }

    public void clientDisconnected(WonderlandClientSender sender, WonderlandClientID clientID) {
        logger.fine("ServerManager client disconnected");
    }
}
TOP

Related Classes of org.jdesktop.wonderland.servermanager.server.ServerManagerConnectionHandler

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.