View Javadoc

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