Skip to content
Snippets Groups Projects
Commit b5ca431e authored by tpylak's avatar tpylak
Browse files

minor: undo formatting

SVN: 19042
parent fb56caa6
No related branches found
No related tags found
No related merge requests found
......@@ -50,26 +50,74 @@ public class ImageViewerLaunchServlet extends AbstractServlet
public static final Template JNLP_TEMPLATE = new Template(
"<?xml version='1.0' encoding='utf-8'?>\n"
+ "<jnlp spec='1.0+' codebase='${base-URL}'>\n" + " <information>\n"
+ " <title>${title}</title>\n" + " <vendor>SyBIT</vendor>\n"
+ " <description>${description}</description>\n" + " </information>\n"
+ " <security>\n" + " <all-permissions/>\n" + " </security>\n"
+ " <resources>\n" + " <j2se version='1.5+'/>\n"
+ " <jar href='screening.jar'/>\n" + " <jar href='cisd-base.jar'/>\n"
+ " <jar href='image-viewer.jar'/>\n" + " <jar href='spring-web.jar'/>\n"
+ " <jar href='spring-context.jar'/>\n"
+ " <jar href='spring-beans.jar'/>\n" + " <jar href='spring-aop.jar'/>\n"
+ " <jar href='spring-core.jar'/>\n" + " <jar href='aopalliance.jar'/>\n"
+ " <jar href='stream-supporting-httpinvoker.jar'/>\n"
+ " <jar href='commons-codec.jar'/>\n"
+ " <jar href='commons-httpclient.jar'/>\n"
+ " <jar href='commons-io.jar'/>\n" + " <jar href='commons-lang.jar'/>\n"
+ " <jar href='commons-logging.jar'/>\n" + " <jar href='ij.jar'/>\n"
+ " </resources>\n" + " <application-desc main-class='${main-class}'>\n"
+ " <argument>${service-URL}</argument>\n"
+ " <argument>${session-id}</argument>\n"
+ " <argument>${channel}</argument>\n" + "${data-set-and-wells-arguments}\n"
+ " </application-desc>\n" + "</jnlp>\n");
+ "<jnlp spec='1.0+' codebase='${base-URL}'>\n"
+ " <information>\n"
+ " <title>${title}</title>\n"
+ " <vendor>SyBIT</vendor>\n"
+ " <description>${description}</description>\n"
+ " </information>\n"
+ " <security>\n"
+ " <all-permissions/>\n"
+ " </security>\n"
+ " <resources>\n"
+ " <j2se version='1.5+'/>\n"
+ " <jar href='screening.jar'/>\n"
+ " <jar href='cisd-base.jar'/>\n"
+ " <jar href='image-viewer.jar'/>\n"
+ " <jar href='spring-web.jar'/>\n"
+ " <jar href='spring-context.jar'/>\n"
+ " <jar href='spring-beans.jar'/>\n"
+ " <jar href='spring-aop.jar'/>\n"
+ " <jar href='spring-core.jar'/>\n"
+ " <jar href='aopalliance.jar'/>\n"
+ " <jar href='stream-supporting-httpinvoker.jar'/>\n"
+ " <jar href='commons-codec.jar'/>\n"
+ " <jar href='commons-httpclient.jar'/>\n"
+ " <jar href='commons-io.jar'/>\n"
+ " <jar href='commons-lang.jar'/>\n"
+ " <jar href='commons-logging.jar'/>\n"
+ " <jar href='ij.jar'/>\n"
+ " </resources>\n"
+ " <application-desc main-class='${main-class}'>\n"
+ " <argument>${service-URL}</argument>\n"
+ " <argument>${session-id}</argument>\n"
+ " <argument>${channel}</argument>\n"
+ "${data-set-and-wells-arguments}\n"
+ " </application-desc>\n" + "</jnlp>\n");
private final Logger operationLog;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment