com.exasol.udfdebugging.modules.debugging.DebuggingModuleFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of udf-debugging-java Show documentation
Show all versions of udf-debugging-java Show documentation
Utilities for debugging, profiling and code coverage measure for UDFs.
The newest version!
package com.exasol.udfdebugging.modules.debugging;
import java.sql.Connection;
import com.exasol.bucketfs.Bucket;
import com.exasol.udfdebugging.LocalServiceExposer;
import com.exasol.udfdebugging.Module;
import com.exasol.udfdebugging.modules.AbstractModuleFactory;
/**
* Factory for {@link DebuggingModule}.
*/
public class DebuggingModuleFactory extends AbstractModuleFactory {
/**
* Create a new instance of {@link DebuggingModuleFactory}.
*/
public DebuggingModuleFactory() {
super("debug");
}
@Override
public Module buildModule(final LocalServiceExposer localServiceExposer, final Bucket bucket,
final Connection exasolConnection) {
return new DebuggingModule(localServiceExposer);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy