Skip to content

Commit

Permalink
feat: Reuse Quartz configuration from Portal Container - Meeds-io/MIP…
Browse files Browse the repository at this point in the history
  • Loading branch information
boubaker committed Dec 30, 2023
1 parent c0b4595 commit 08d09f6
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,12 @@ private AvailableIntegration() {}
*/
public static final String WEB_TRANSACTION_MODULE = "io.meeds.spring.web.transaction";

/**
* Used to reuse the same Quartz Sheduler as the PortalContainer instance to
* optimize and centralize settings.
*/
public static final String QUARTZ_SHEDULER_MODULE = "io.meeds.spring.quartz";

/**
* Shortcut to list all available Meeds Portal and Kernel integration modules with Spring
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
/**
* This file is part of the Meeds project (https://meeds.io/).
*
* Copyright (C) 2020 - 2023 Meeds Association [email protected]
*
* This program 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 3 of the License, or (at your option) any later version.
* This program 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.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
package io.meeds.spring.kernel;

import org.quartz.Scheduler;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

import org.exoplatform.services.scheduler.impl.QuartzSheduler;

/**
* A configuration setting for Spring in order to reuse the PortalContainer
* Quartz Scheduler instance
*/
@Configuration
public class QuartzConfiguration {

@Bean
public Scheduler scheduler(QuartzSheduler quartzSheduler) {
return quartzSheduler.getQuartzSheduler();
}

}

0 comments on commit 08d09f6

Please sign in to comment.