package org.madore.damlengine; import java.io.FileInputStream; import java.io.OutputStream; public final class WeblogIndexSelect { private WeblogIndexSelect() { // Forbid instantiation throw new AssertionError("WeblogIndexSelect cannot be instantiated"); } public static void fullProcess(OutputStream out) throws Exception { DamlEngine.fullProcess(new FileInputStream(DamlEngine.templatePath+"/weblog-index-template.daml"), out, null); } }