View Javadoc
1   package com.atlassian.plugin.parsers;
2   
3   /**
4    * Interface for {@link SafeModeCommandLineArguments} factory, this instantiates an instance of
5    * {@link SafeModeCommandLineArguments} with the appropriate parameters
6    */
7   public interface SafeModeCommandLineArgumentsFactory {
8   
9       /**
10       * @return reference to the SafeModeCommandLineArguments singleton
11       */
12      SafeModeCommandLineArguments get();
13  }