mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
ing...
This commit is contained in:
parent
9b55f58605
commit
6b304a9691
1 changed files with 24 additions and 0 deletions
|
|
@ -0,0 +1,24 @@
|
|||
package org.apache.zeppelin.interpreter;
|
||||
|
||||
import java.nio.file.Path;
|
||||
import java.nio.file.Paths;
|
||||
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
||||
import org.apache.zeppelin.conf.ZeppelinConfiguration;
|
||||
|
||||
public class InterpreterSettingManager {
|
||||
private static final Logger Logger = LoggerFactory.getLogger(InterpreterSettingManager.class);
|
||||
|
||||
private final ZeppelinConfiguration zeppelinConfiguration;
|
||||
private final Path interpreterBindingPath;
|
||||
|
||||
public InterpreterSettingManager(ZeppelinConfiguration zeppelinConfiguration) {
|
||||
this.zeppelinConfiguration = zeppelinConfiguration;
|
||||
|
||||
Paths.get()
|
||||
|
||||
this.interpreterBindingPath = interpreterBindingPath;
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue