本文整理汇总了Java中org.pentaho.di.www.WebResult.fromXMLString方法的典型用法代码示例。如果您正苦于以下问题:Java WebResult.fromXMLString方法的具体用法?Java WebResult.fromXMLString怎么用?Java WebResult.fromXMLString使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.pentaho.di.www.WebResult
的用法示例。
在下文中一共展示了WebResult.fromXMLString方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: stopTransformation
import org.pentaho.di.www.WebResult; //导入方法依赖的package包/类
public WebResult stopTransformation(String transName) throws Exception
{
String xml = execService(StopTransServlet.CONTEXT_PATH+"/?name="+URLEncoder.encode(transName, "UTF-8")+"&xml=Y"); //$NON-NLS-1$ //$NON-NLS-2$
return WebResult.fromXMLString(xml);
}
示例2: stopJob
import org.pentaho.di.www.WebResult; //导入方法依赖的package包/类
public WebResult stopJob(String transName) throws Exception
{
String xml = execService(StopJobServlet.CONTEXT_PATH+"/?name="+URLEncoder.encode(transName, "UTF-8")+"&xml=Y"); //$NON-NLS-1$ //$NON-NLS-2$
return WebResult.fromXMLString(xml);
}
示例3: startTransformation
import org.pentaho.di.www.WebResult; //导入方法依赖的package包/类
public WebResult startTransformation(String transName) throws Exception
{
String xml = execService(StartTransServlet.CONTEXT_PATH+"/?name="+URLEncoder.encode(transName, "UTF-8")+"&xml=Y"); //$NON-NLS-1$ //$NON-NLS-2$
return WebResult.fromXMLString(xml);
}
示例4: startJob
import org.pentaho.di.www.WebResult; //导入方法依赖的package包/类
public WebResult startJob(String transName) throws Exception
{
String xml = execService(StartJobServlet.CONTEXT_PATH+"/?name="+URLEncoder.encode(transName, "UTF-8")+"&xml=Y"); //$NON-NLS-1$ //$NON-NLS-2$
return WebResult.fromXMLString(xml);
}
示例5: cleanupTransformation
import org.pentaho.di.www.WebResult; //导入方法依赖的package包/类
public WebResult cleanupTransformation(String transName) throws Exception
{
String xml = execService(CleanupTransServlet.CONTEXT_PATH+"/?name="+URLEncoder.encode(transName, "UTF-8")+"&xml=Y"); //$NON-NLS-1$ //$NON-NLS-2$
return WebResult.fromXMLString(xml);
}
示例6: deallocatePorts
import org.pentaho.di.www.WebResult; //导入方法依赖的package包/类
public WebResult deallocatePorts(String transName) throws Exception
{
String xml = execService(CleanupTransServlet.CONTEXT_PATH+"/?sockets=Y&name="+URLEncoder.encode(transName, "UTF-8")+"&xml=Y"); //$NON-NLS-1$ //$NON-NLS-2$
return WebResult.fromXMLString(xml);
}
示例7: stopTransformation
import org.pentaho.di.www.WebResult; //导入方法依赖的package包/类
public WebResult stopTransformation(String transName, String carteObjectId) throws Exception
{
String xml = execService(StopTransServlet.CONTEXT_PATH+"/?name="+URLEncoder.encode(transName, "UTF-8")+"&id="+Const.NVL(carteObjectId, "")+"&xml=Y"); //$NON-NLS-1$ //$NON-NLS-2$
return WebResult.fromXMLString(xml);
}
示例8: pauseResumeTransformation
import org.pentaho.di.www.WebResult; //导入方法依赖的package包/类
public WebResult pauseResumeTransformation(String transName, String carteObjectId) throws Exception
{
String xml = execService(PauseTransServlet.CONTEXT_PATH+"/?name="+URLEncoder.encode(transName, "UTF-8")+"&id="+Const.NVL(carteObjectId, "")+"&xml=Y"); //$NON-NLS-1$ //$NON-NLS-2$
return WebResult.fromXMLString(xml);
}
示例9: removeTransformation
import org.pentaho.di.www.WebResult; //导入方法依赖的package包/类
public WebResult removeTransformation(String transName, String carteObjectId) throws Exception
{
String xml = execService(RemoveTransServlet.CONTEXT_PATH+"/?name="+URLEncoder.encode(transName, "UTF-8")+"&id="+Const.NVL(carteObjectId, "")+"&xml=Y"); //$NON-NLS-1$ //$NON-NLS-2$
return WebResult.fromXMLString(xml);
}
示例10: removeJob
import org.pentaho.di.www.WebResult; //导入方法依赖的package包/类
public WebResult removeJob(String jobName, String carteObjectId) throws Exception
{
String xml = execService(RemoveJobServlet.CONTEXT_PATH+"/?name="+URLEncoder.encode(jobName, "UTF-8")+"&id="+Const.NVL(carteObjectId, "")+"&xml=Y"); //$NON-NLS-1$ //$NON-NLS-2$
return WebResult.fromXMLString(xml);
}
示例11: stopJob
import org.pentaho.di.www.WebResult; //导入方法依赖的package包/类
public WebResult stopJob(String transName, String carteObjectId) throws Exception
{
String xml = execService(StopJobServlet.CONTEXT_PATH+"/?name="+URLEncoder.encode(transName, "UTF-8")+"&xml=Y&id="+Const.NVL(carteObjectId, "")); //$NON-NLS-1$ //$NON-NLS-2$
return WebResult.fromXMLString(xml);
}
示例12: startTransformation
import org.pentaho.di.www.WebResult; //导入方法依赖的package包/类
public WebResult startTransformation(String transName, String carteObjectId) throws Exception
{
String xml = execService(StartTransServlet.CONTEXT_PATH+"/?name="+URLEncoder.encode(transName, "UTF-8")+"&id="+Const.NVL(carteObjectId, "")+"&xml=Y"); //$NON-NLS-1$ //$NON-NLS-2$
return WebResult.fromXMLString(xml);
}
示例13: startJob
import org.pentaho.di.www.WebResult; //导入方法依赖的package包/类
public WebResult startJob(String jobName, String carteObjectId) throws Exception
{
String xml = execService(StartJobServlet.CONTEXT_PATH+"/?name="+URLEncoder.encode(jobName, "UTF-8")+"&xml=Y&id="+Const.NVL(carteObjectId, "")); //$NON-NLS-1$ //$NON-NLS-2$
return WebResult.fromXMLString(xml);
}
示例14: cleanupTransformation
import org.pentaho.di.www.WebResult; //导入方法依赖的package包/类
public WebResult cleanupTransformation(String transName, String carteObjectId) throws Exception
{
String xml = execService(CleanupTransServlet.CONTEXT_PATH+"/?name="+URLEncoder.encode(transName, "UTF-8")+"&id="+Const.NVL(carteObjectId, "")+"&xml=Y"); //$NON-NLS-1$ //$NON-NLS-2$
return WebResult.fromXMLString(xml);
}
示例15: deAllocateServerSockets
import org.pentaho.di.www.WebResult; //导入方法依赖的package包/类
public synchronized WebResult deAllocateServerSockets(String transName, String clusteredRunId) throws Exception
{
String xml = execService(CleanupTransServlet.CONTEXT_PATH+"/?name="+URLEncoder.encode(transName, "UTF-8")+"&id="+Const.NVL(clusteredRunId, "")+"&xml=Y&sockets=Y"); //$NON-NLS-1$ //$NON-NLS-2$
return WebResult.fromXMLString(xml);
}