Package com.googlecode.psiprobe.controllers.apps

Source Code of com.googlecode.psiprobe.controllers.apps.ReloadContextController

/*
* Licensed under the GPL License.  You may not use this file except in
* compliance with the License.  You may obtain a copy of the License at
*
*     http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
*
* THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
* MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/
package com.googlecode.psiprobe.controllers.apps;

import org.apache.catalina.Context;

/**
* Reloads application context.
*
* @author Vlad Ilyushchenko
*/
public class ReloadContextController extends NoSelfContextHandlerController {

    protected void executeAction(String contextName) throws Exception {
        Context context = getContainerWrapper().getTomcatContainer().findContext(contextName);
        if (context != null) {
            context.reload();
        }
    }
}
TOP

Related Classes of com.googlecode.psiprobe.controllers.apps.ReloadContextController

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.