1 | Every module written for webflow, the class must implement the interface Module. |
2 | public class My_module implements Module { .... } |
3 | The Module interface is defined in package webflow.backend |
4 | public interface Module { |
5 | public MetaModule initialize(); |
6 | public void run(); |
7 | public void stop(); |
8 | public void destroy(); |
9 | } |