Coverage Report - org.mule.module.launcher.application.Application
 
Classes in this File Line Coverage Branch Coverage Complexity
Application
N/A
N/A
1
 
 1  
 /*
 2  
  * $Id: Application.java 19666 2010-09-16 16:32:29Z aperepel $
 3  
  * --------------------------------------------------------------------------------------
 4  
  * Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.com
 5  
  *
 6  
  * The software in this package is published under the terms of the CPAL v1.0
 7  
  * license, a copy of which has been included with this distribution in the
 8  
  * LICENSE.txt file.
 9  
  */
 10  
 
 11  
 package org.mule.module.launcher.application;
 12  
 
 13  
 import org.mule.api.MuleContext;
 14  
 import org.mule.module.launcher.DeploymentStartException;
 15  
 import org.mule.module.launcher.InstallException;
 16  
 import org.mule.module.launcher.descriptor.ApplicationDescriptor;
 17  
 
 18  
 public interface Application
 19  
 {
 20  
     void install() throws InstallException;
 21  
 
 22  
     void init();
 23  
 
 24  
     void start() throws DeploymentStartException;
 25  
 
 26  
     void stop();
 27  
 
 28  
     void dispose();
 29  
 
 30  
     void redeploy();
 31  
 
 32  
     MuleContext getMuleContext();
 33  
 
 34  
     /**
 35  
      * @return a classloader associated with this deployment 
 36  
      */
 37  
     ClassLoader getDeploymentClassLoader();
 38  
 
 39  
     String getAppName();
 40  
 
 41  
     ApplicationDescriptor getDescriptor();
 42  
 }