blob: d5fefee11b1d80213804e87fd0e437bb7e021c74 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008-2011 Chair for Applied Software Engineering,
* Technische Universitaet Muenchen.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
******************************************************************************/
package org.eclipse.emf.emfstore.server.connection.xmlrpc;
import org.eclipse.emf.emfstore.server.AdminEmfStore;
import org.eclipse.emf.emfstore.server.accesscontrol.AuthenticationControl;
import org.eclipse.emf.emfstore.server.connection.ConnectionHandler;
import org.eclipse.emf.emfstore.server.exceptions.FatalEmfStoreException;
/**
* Connection Handler for XML RPC AdminEmfstore interface.
*
* @author wesendon
*/
public class XmlRpcAdminConnectionHander implements ConnectionHandler<AdminEmfStore> {
/**
* String interface identifier.
*/
public static final String ADMINEMFSTORE = "AdminEmfStore";
private static final String NAME = "XML RPC Admin Connection Handler";
private static AdminEmfStore adminEmfStore;
/**
* {@inheritDoc}
*/
public String getName() {
return NAME;
}
/**
* {@inheritDoc}
*/
@SuppressWarnings("static-access")
public void init(AdminEmfStore adminEmfStore, AuthenticationControl accessControl) throws FatalEmfStoreException {
this.adminEmfStore = adminEmfStore;
XmlRpcWebserverManager webServer = XmlRpcWebserverManager.getInstance();
webServer.initServer();
webServer.addHandler(ADMINEMFSTORE, XmlRpcAdminEmfStoreImpl.class);
}
/**
* Returns AdminEmfstore.
*
* @return admin emfstore
*/
public static AdminEmfStore getAdminEmfStore() {
return adminEmfStore;
}
/**
* {@inheritDoc}
*/
public void stop(boolean force) {
XmlRpcWebserverManager webserverManager = XmlRpcWebserverManager.getInstance();
if (!webserverManager.removeHandler(ADMINEMFSTORE)) {
webserverManager.stopServer();
}
}
}