summaryrefslogtreecommitdiffstats
path: root/org/madore/damlengine/WeblogIndexSelect.java
blob: 03611773596b4bf097d0ab92f507389315e25364 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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);

    }

}