JBoss.orgCommunity Documentation

Publication Manager

The Publication Manager manages lifecycles and contexts in the Content platform. It allows to manages different lifecycles based on different publication plugin in the platform.



public interface PublicationManager {
    public List<Lifecycle> getLifecycles();
    public List<Context> getContexts();
    public Context getContext(String name);
    public Lifecycle getLifecycle(String name);
    public List<Lifecycle> getLifecyclesFromUser(String remoteUser, String state);
}

In which: