Example usage for com.liferay.portal.kernel.util SimplePojoClp SimplePojoClp

List of usage examples for com.liferay.portal.kernel.util SimplePojoClp SimplePojoClp

Introduction

In this page you can find the example usage for com.liferay.portal.kernel.util SimplePojoClp SimplePojoClp.

Prototype

public SimplePojoClp(Class<? extends T> localImplementationClass, ClassLoader remoteClassLoader)
            throws ClassNotFoundException 

Source Link

Usage

From source file:com.liferay.util.spring.transaction.TransactionManagerClp.java

License:Open Source License

@PostConstruct
public void init() throws ClassNotFoundException {
    _transactionManager = PortalBeanLocatorUtil.locate("liferayTransactionManager");

    _transactionDefinitionClp = new SimplePojoClp<TransactionDefinition>(DefaultTransactionDefinition.class,
            PortalClassLoaderUtil.getClassLoader());

    initTransactionManagerMethods();/*from   www  . j av  a  2  s .c om*/
}