
com.wiris.plugin.dispatchers.EditorDispatcher Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wirisplugin-engine Show documentation
Show all versions of wirisplugin-engine Show documentation
The WIRIS plugin engine for Java
The newest version!
package com.wiris.plugin.dispatchers;
import java.io.IOException;
import java.io.PrintWriter;
import java.util.Iterator;
import java.util.Properties;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import com.wiris.plugin.LibWIRIS;
public abstract class EditorDispatcher {
public static void dispatch(Properties config, HttpServletRequest request,
HttpServletResponse response) throws IOException {
response.setContentType("text/html; charset=utf-8");
PrintWriter out = response.getWriter();
out.println("");
out.print("<span class="hljs-string">WIRIS Formula Editor</span> ");
out.close();
}
}