View Javadoc
1   /*
2    * Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.com
3    * The software in this package is published under the terms of the CPAL v1.0
4    * license, a copy of which has been included with this distribution in the
5    * LICENSE.txt file.
6    */
7   package org.mule.module.logging;
8   
9   /**
10   * Provides Mule related utilities without depending on Mule code
11   */
12  public class MuleUtils
13  {
14  
15      public static final String MULE_HOME = "mule.home";
16  
17      private MuleUtils()
18      {
19  
20      }
21  
22      /**
23       * Indicates if Mule is running in standalone mode
24       * @return
25       */
26      public static boolean isStandalone()
27      {
28          return System.getProperty(MULE_HOME) != null;
29      }
30  }