View Javadoc

1   package com.atlassian.johnson.setup;
2   
3   import com.atlassian.johnson.JohnsonEventContainer;
4   
5   import java.util.Map;
6   
7   /**
8    * This provides the old, non-multitenant functionality. This way existing apps don't need to worry about the
9    * container-factory xml element and all that stuff
10   * @since v1.1
11   */
12  public class DefaultContainerFactory implements ContainerFactory
13  {
14      public JohnsonEventContainer create()
15      {
16          return new JohnsonEventContainer();
17      }
18  
19      public void init(final Map params)
20      {
21      }
22  }