com.liferay.portal.kernel.util.InfrastructureUtil 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.util;
import com.liferay.portal.kernel.dao.jdbc.aop.DynamicDataSourceTargetSource;
import com.liferay.portal.kernel.security.pacl.permission.PortalRuntimePermission;
import com.liferay.portal.kernel.spring.osgi.OSGiBeanProperties;
import javax.mail.Session;
import javax.sql.DataSource;
/**
* @author Brian Wing Shun Chan
* @author Michael Young
*/
@OSGiBeanProperties(service = InfrastructureUtil.class)
public class InfrastructureUtil {
public static DataSource getDataSource() {
PortalRuntimePermission.checkGetBeanProperty(
InfrastructureUtil.class, "dataSource");
return _dataSource;
}
public static DynamicDataSourceTargetSource
getDynamicDataSourceTargetSource() {
PortalRuntimePermission.checkGetBeanProperty(
InfrastructureUtil.class, "dynamicDataSourceTargetSource");
return _dynamicDataSourceTargetSource;
}
public static Session getMailSession() {
PortalRuntimePermission.checkGetBeanProperty(
InfrastructureUtil.class, "mailSession");
return _mailSession;
}
public static Object getTransactionManager() {
PortalRuntimePermission.checkGetBeanProperty(
InfrastructureUtil.class, "transactionManager");
return _transactionManager;
}
public void setDataSource(DataSource dataSource) {
PortalRuntimePermission.checkSetBeanProperty(getClass(), "dataSource");
_dataSource = dataSource;
}
public void setDynamicDataSourceTargetSource(
DynamicDataSourceTargetSource dynamicDataSourceTargetSource) {
PortalRuntimePermission.checkSetBeanProperty(
getClass(), "dynamicDataSourceTargetSource");
_dynamicDataSourceTargetSource = dynamicDataSourceTargetSource;
}
public void setMailSession(Session mailSession) {
PortalRuntimePermission.checkSetBeanProperty(getClass(), "mailSession");
_mailSession = mailSession;
}
public void setTransactionManager(Object transactionManager) {
PortalRuntimePermission.checkSetBeanProperty(
getClass(), "transactionManager");
_transactionManager = transactionManager;
}
private static DataSource _dataSource;
private static DynamicDataSourceTargetSource _dynamicDataSourceTargetSource;
private static Session _mailSession;
private static Object _transactionManager;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy