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

org.activiti.engine.test.profiler.ProfilingDbSqlSessionFactory Maven / Gradle / Ivy

package org.activiti.engine.test.profiler;

import org.activiti.engine.impl.db.DbSqlSessionFactory;
import org.activiti.engine.impl.interceptor.CommandContext;
import org.activiti.engine.impl.interceptor.Session;

/**

 */
public class ProfilingDbSqlSessionFactory extends DbSqlSessionFactory {

    @Override
    public Session openSession(CommandContext commandContext) {
        return new ProfilingDbSqlSession(this, commandContext.getEntityCache());
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy