1 package io.github.magwas.inez;
2
3 public interface InezPlugin {
4 /*
5 * A plugin probably does some of the followings:
6 * - adds a model to the "system-meta" container.
7 * the initialize method returns the id of it, or null
8 *
9 * - publishes some OSGI services referenced in the metamodel
10 *
11 */
12 String initialize(Inez inez);
13 }