Skip to content
Other versions

Loading…

Execute JAR

This feature helps administration to create its own classes, packaged into JAR file and execute from OpenKM.

Requisits:

  • Must implement the class “public static void main(String[] args)”.
package com.openkm;
public class CronTabTest {
public static void main(String[] args) {
// Some stuff here
}
}