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

com.liferay.questions.web.internal.upgrade.registry.QuestionsWebUpgradeStepRegistrator Maven / Gradle / Ivy

There is a newer version: 2.0.121
Show newest version
/**
 * SPDX-FileCopyrightText: (c) 2000 Liferay, Inc. https://liferay.com
 * SPDX-License-Identifier: LGPL-2.1-or-later OR LicenseRef-Liferay-DXP-EULA-2.0.0-2023-06
 */

package com.liferay.questions.web.internal.upgrade.registry;

import com.liferay.portal.security.service.access.policy.service.SAPEntryService;
import com.liferay.portal.upgrade.registry.UpgradeStepRegistrator;

import org.osgi.service.component.annotations.Component;
import org.osgi.service.component.annotations.Reference;

/**
 * @author Carlos Correa
 */
@Component(service = UpgradeStepRegistrator.class)
public class QuestionsWebUpgradeStepRegistrator
	implements UpgradeStepRegistrator {

	@Override
	public void register(Registry registry) {
		registry.registerInitialization();

		registry.register(
			"0.0.1", "1.0.0",
			new com.liferay.questions.web.internal.upgrade.v1_0_0.
				UpdateAllowedServicesSignaturesInSAPEntryUpgradeProcess(
					_sapEntryService));

		registry.register(
			"1.0.0", "1.0.1",
			new com.liferay.questions.web.internal.upgrade.v1_0_0.
				UpdateAllowedServicesSignaturesInSAPEntryUpgradeProcess(
					_sapEntryService));
	}

	@Reference
	private SAPEntryService _sapEntryService;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy