3738394041424344454647
protected void handleElementValue(String value) throws KongaSaxParserException { // This element has no value. } JitterbitServerInfo getJitterbitServerInfo() { return new JitterbitServerInfo() { public File getServerHome() { return m_home; }
123124125126127128129130131132133134
} return f; } private File getLogRoot(PipelinePluginContext context) { JitterbitServerInfo serverInfo = context.getJitterbitServerInfo(); File root = new File(serverInfo.getServerHome(), LOG_FOLDER); if (!root.exists()) { root.mkdirs(); } return root.exists() && root.isDirectory() ? root : null; }