Package org.jdesktop.wonderland.modules.presencemanager.server

Source Code of org.jdesktop.wonderland.modules.presencemanager.server.PresenceManagerServerPlugin

/**
* 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.modules.presencemanager.server;

import java.util.logging.Logger;
import org.jdesktop.wonderland.common.annotation.Plugin;
import org.jdesktop.wonderland.server.ServerPlugin;
import org.jdesktop.wonderland.server.WonderlandContext;
import org.jdesktop.wonderland.server.comms.CommsManager;

/**
* Pluging to support the presence manager
* @author paulby
*/
@Plugin
public class PresenceManagerServerPlugin implements ServerPlugin {
    private static final Logger logger =
            Logger.getLogger(PresenceManagerServerPlugin.class.getName());
   
    public void initialize() {
        CommsManager cm = WonderlandContext.getCommsManager();
        cm.registerClientHandler(new PresenceManagerConnectionHandler());

  logger.finest("presence manager initialized");
    }
   
}
TOP

Related Classes of org.jdesktop.wonderland.modules.presencemanager.server.PresenceManagerServerPlugin

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.