package org.madore.damlengine; 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(DamlEngine.class.getResourceAsStream("weblog-index-template.daml"), out, null); } }