org.opencms.module.A_CmsModuleAction Maven / Gradle / Ivy
Show all versions of opencms-test Show documentation
/*
* This library is part of OpenCms -
* the Open Source Content Management System
*
* Copyright (c) Alkacon Software GmbH & Co. KG (http://www.alkacon.com)
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* For further information about Alkacon Software GmbH & Co. KG, please see the
* company website: http://www.alkacon.com
*
* For further information about OpenCms, please see the
* project website: http://www.opencms.org
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
package org.opencms.module;
import org.opencms.configuration.CmsConfigurationManager;
import org.opencms.db.CmsPublishList;
import org.opencms.file.CmsObject;
import org.opencms.main.CmsEvent;
import org.opencms.main.CmsLog;
import org.opencms.report.I_CmsReport;
import org.apache.commons.logging.Log;
/**
* Simple base implementation of the {@link I_CmsModuleAction} interface,
* extend this class for more sophisticated module action implementations.
*
* @since 6.0.0
*/
public abstract class A_CmsModuleAction implements I_CmsModuleAction {
/** The log object for this class. */
private static final Log LOG = CmsLog.getLog(A_CmsModuleAction.class);
/**
* @see org.opencms.main.I_CmsEventListener#cmsEvent(org.opencms.main.CmsEvent)
*/
public void cmsEvent(CmsEvent event) {
if (LOG.isDebugEnabled()) {
LOG.debug(
Messages.get().getBundle().key(
Messages.LOG_EVENT_CAUGHT_2,
this.getClass().getName(),
new Integer(event.getType())));
}
}
/**
* @see org.opencms.module.I_CmsModuleAction#initialize(org.opencms.file.CmsObject, CmsConfigurationManager, CmsModule)
*/
public void initialize(CmsObject adminCms, CmsConfigurationManager configurationManager, CmsModule module) {
if (LOG.isDebugEnabled()) {
LOG.debug(
Messages.get().getBundle().key(
Messages.LOG_MODULE_INITIALIZED_2,
module.getName(),
this.getClass().getName()));
}
}
/**
* @see org.opencms.module.I_CmsModuleAction#moduleUninstall(CmsModule)
*/
public void moduleUninstall(CmsModule module) {
if (LOG.isDebugEnabled()) {
LOG.debug(
Messages.get().getBundle().key(
Messages.LOG_MODULE_UNINSTALLED_2,
module.getName(),
this.getClass().getName()));
}
}
/**
* @see org.opencms.module.I_CmsModuleAction#moduleUpdate(org.opencms.module.CmsModule)
*/
public void moduleUpdate(CmsModule module) {
if (LOG.isDebugEnabled()) {
LOG.debug(
Messages.get().getBundle().key(
Messages.LOG_MODULE_UPDATED_2,
module.getName(),
this.getClass().getName()));
}
}
/**
* @see org.opencms.module.I_CmsModuleAction#publishProject(org.opencms.file.CmsObject, org.opencms.db.CmsPublishList, int, org.opencms.report.I_CmsReport)
*/
public void publishProject(CmsObject cms, CmsPublishList publishList, int publishTag, I_CmsReport report) {
if (LOG.isDebugEnabled()) {
LOG.debug(Messages.get().getBundle().key(Messages.LOG_PUBLISH_PROJECT_1, this.getClass().getName()));
}
}
/**
* @see org.opencms.module.I_CmsModuleAction#shutDown(CmsModule)
*/
public void shutDown(CmsModule module) {
if (LOG.isDebugEnabled()) {
LOG.debug(
Messages.get().getBundle().key(
Messages.LOG_MODULE_SHUTDOWN_2,
module.getName(),
this.getClass().getName()));
}
}
}