All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opencms.module.I_CmsModuleAction Maven / Gradle / Ivy

Go to download

OpenCms is an enterprise-ready, easy to use website content management system based on Java and XML technology. Offering a complete set of features, OpenCms helps content managers worldwide to create and maintain beautiful websites fast and efficiently.

There is a newer version: 18.0
Show newest version
/*
 * 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.I_CmsEventListener;
import org.opencms.report.I_CmsReport;

/**
 * Module action classes in OpenCms must implement this interface.

* * A module action class allows to perform special functions on certain * OpenCms lifecycle system events, like {@link #initialize(CmsObject, CmsConfigurationManager, CmsModule)} or * {@link #shutDown(CmsModule)}.

* * @since 6.0.0 * * @see org.opencms.module.A_CmsModuleAction */ public interface I_CmsModuleAction extends I_CmsEventListener { /** * Will be called by the OpenCms system during server startup.

* * If a module requires special initialization code, this * is a good place to to implement this functions.

* * Moreover, if the module requires special "one time" setup code, * this should also be implemented here. For example if the module * requires special DB tables to be created, you should implement * a check if theses tables exist in this method, and if they don't * exist create them as needed.

* * @param adminCms an initialized CmsObject with "Admin" permissions * @param configurationManager the initialized OpenCms configuration manager * @param module the module of this action instance */ void initialize(CmsObject adminCms, CmsConfigurationManager configurationManager, CmsModule module); /** * Will be called if a module is uninstalled from an OpenCms system.

* * If you require special code to be executed if a module is uninstalled, * implement it in this function.

* * Please note that there is no install() method. * This is because the class loader will not have the module class * instance available after module installation/upload. If you * need to execute setup/install code, do this in the {@link #initialize(CmsObject, CmsConfigurationManager, CmsModule)} * method during the next server startup.

* * This method is not called if the module this action instance belongs to * is "replaced". In this case {@link #moduleUpdate(CmsModule)} is called after the * new version of the module is installed.

* * @param module the module of this action instance * * @see #initialize(CmsObject, CmsConfigurationManager, CmsModule) */ void moduleUninstall(CmsModule module); /** * Will be called if the module this action instance belongs to is updated.

* * @param module the module of this action instance with the updated values */ void moduleUpdate(CmsModule module); /** * Will be called during a the publish process after the resources have been published, * but before the publish event is fired.

* * If you require special code to be executed after a resource is published, * implement it in this function any analyze the publish list for "interesting" resources.

* * @param cms the user context the publish was executed with * @param publishList the list of published resources * @param publishTag the publish tag * @param report the report to write messages to */ void publishProject(CmsObject cms, CmsPublishList publishList, int publishTag, I_CmsReport report); /** * Will be called by the OpenCms system during server shutdown.

* * If a module requires special "clean up" functions, * for example removing temporary files, this is a good place * to implement this functions.

* * @param module the module of this action instance */ void shutDown(CmsModule module); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy