com.liferay.portal.kernel.deploy.DeployManagerUtil 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.deploy;
import com.liferay.portal.kernel.deploy.auto.context.AutoDeploymentContext;
import com.liferay.portal.kernel.plugin.PluginPackage;
import com.liferay.portal.kernel.security.pacl.permission.PortalRuntimePermission;
import java.util.List;
import java.util.Properties;
/**
* @author Jonathan Potter
* @author Brian Wing Shun Chan
* @author Ryan Park
*/
public class DeployManagerUtil {
public static void deploy(AutoDeploymentContext autoDeploymentContext)
throws Exception {
getDeployManager().deploy(autoDeploymentContext);
}
public static String getDeployDir() throws Exception {
return getDeployManager().getDeployDir();
}
public static DeployManager getDeployManager() {
PortalRuntimePermission.checkGetBeanProperty(DeployManagerUtil.class);
return _deployManager;
}
public static String getInstalledDir() throws Exception {
return getDeployManager().getInstalledDir();
}
public static PluginPackage getInstalledPluginPackage(String context) {
return getDeployManager().getInstalledPluginPackage(context);
}
public static List getInstalledPluginPackages() {
return getDeployManager().getInstalledPluginPackages();
}
public static List getLevelsRequiredDeploymentContexts() {
return getDeployManager().getLevelsRequiredDeploymentContexts();
}
public static List getLevelsRequiredDeploymentWARFileNames() {
return getDeployManager().getLevelsRequiredDeploymentWARFileNames();
}
public static boolean isDeployed(String context) {
return getDeployManager().isDeployed(context);
}
public static boolean isRequiredDeploymentContext(String context) {
return getDeployManager().isRequiredDeploymentContext(context);
}
public static PluginPackage readPluginPackageProperties(
String displayName, Properties properties) {
return getDeployManager().readPluginPackageProperties(
displayName, properties);
}
public static PluginPackage readPluginPackageXml(String xml)
throws Exception {
return getDeployManager().readPluginPackageXml(xml);
}
public static void redeploy(String context) throws Exception {
getDeployManager().redeploy(context);
}
public static void reset() {
PortalRuntimePermission.checkSetBeanProperty(DeployManagerUtil.class);
_deployManager = null;
}
public static void undeploy(String context) throws Exception {
getDeployManager().undeploy(context);
}
public void setDeployManager(DeployManager deployManager) {
PortalRuntimePermission.checkSetBeanProperty(getClass());
_deployManager = deployManager;
}
private static DeployManager _deployManager;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy