A single step in the site initialization process.
| 16 | |
| 17 | /** A single step in the site initialization process. */ |
| 18 | public interface InitStep { |
| 19 | void run() throws Exception; |
| 20 | |
| 21 | /** Executed after the site has been initialized */ |
| 22 | default void postRun() throws Exception {} |
| 23 | } |
no outgoing calls
no test coverage detected