Package tifauv.jplop.core.config.export

Examples of tifauv.jplop.core.config.export.BoardConfigExporter


   */
  @Override
  protected void doGet(HttpServletRequest p_request, HttpServletResponse p_response)
  throws IOException {
    StringBuffer buffer = new StringBuffer();
    new BoardConfigExporter().export(Main.get().getConfig(), buffer);
    String config = buffer.toString();
   
    // Send the response
    p_response.setStatus(HttpServletResponse.SC_OK);
    p_response.setContentType("text/xml;charset=UTF-8");
View Full Code Here

TOP

Related Classes of tifauv.jplop.core.config.export.BoardConfigExporter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.