com.liferay.portal.kernel.patcher.Patcher Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.liferay.portal.kernel Show documentation
Show all versions of com.liferay.portal.kernel Show documentation
Contains interfaces for the portal services. Interfaces are only loaded by the global class loader and are shared by all plugins.
/**
* Copyright (c) 2000-present Liferay, Inc. All rights reserved.
*
* 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.
*/
package com.liferay.portal.kernel.patcher;
import java.io.File;
import java.util.Properties;
/**
* @author Zsolt Balogh
* @author Brian Wing Shun Chan
* @author Zoltán Takács
*/
public interface Patcher {
public static final String PATCHER_PROPERTIES = "patcher.properties";
public static final String PATCHER_SERVICE_PROPERTIES =
"patcher-service.properties";
public static final String PROPERTY_FIXED_ISSUES = "fixed.issues";
public static final String PROPERTY_INSTALLED_PATCHES = "installed.patches";
public static final String PROPERTY_PATCH_DIRECTORY = "patch.directory";
public static final String PROPERTY_PATCH_LEVELS = "patch.levels";
public static final String PROPERTY_PATCHING_TOOL_VERSION =
"patching.tool.version";
public boolean applyPatch(File patchFile);
public String[] getFixedIssues();
public String[] getInstalledPatches();
public File getPatchDirectory();
public int getPatchingToolVersion();
public String[] getPatchLevels();
public Properties getProperties();
public boolean hasInconsistentPatchLevels();
public boolean isConfigured();
public void verifyPatchLevels() throws PatchInconsistencyException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy