use of org.apache.zeppelin.interpreter.InterpreterSetting in project zeppelin by apache.
the class NotebookServer method getInterpreterSettings.
private void getInterpreterSettings(NotebookSocket conn, AuthenticationInfo subject) throws IOException {
List<InterpreterSetting> availableSettings = notebook().getInterpreterSettingManager().get();
conn.send(serializeMessage(new Message(OP.INTERPRETER_SETTINGS).put("interpreterSettings", availableSettings)));
}
Aggregations