Coverage Report - org.mule.transport.servlet.jetty.WebappsConfiguration
 
Classes in this File Line Coverage Branch Coverage Complexity
WebappsConfiguration
0%
0/16
N/A
1
 
 1  
 /*
 2  
  * $Id: WebappsConfiguration.java 20437 2010-12-02 11:58:20Z dirk.olmes $
 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.transport.servlet.jetty;
 12  
 
 13  0
 public class WebappsConfiguration
 14  
 {
 15  
     private String host;
 16  
     private String directory;
 17  
     private int port;
 18  
     private String[] systemClasses;
 19  
     private String[] serverClasses;
 20  
 
 21  
     public String getHost()
 22  
     {
 23  0
         return host;
 24  
     }
 25  
 
 26  
     public void setHost(String host)
 27  
     {
 28  0
         this.host = host;
 29  0
     }
 30  
 
 31  
     public String getDirectory()
 32  
     {
 33  0
         return directory;
 34  
     }
 35  
 
 36  
     public void setDirectory(String directory)
 37  
     {
 38  0
         this.directory = directory;
 39  0
     }
 40  
 
 41  
     public int getPort()
 42  
     {
 43  0
         return port;
 44  
     }
 45  
 
 46  
     public void setPort(int port)
 47  
     {
 48  0
         this.port = port;
 49  0
     }
 50  
 
 51  
     public String[] getSystemClasses()
 52  
     {
 53  0
         return systemClasses;
 54  
     }
 55  
 
 56  
     public void setSystemClasses(String[] systemClasses)
 57  
     {
 58  0
         this.systemClasses = systemClasses;
 59  0
     }
 60  
 
 61  
     public String[] getServerClasses()
 62  
     {
 63  0
         return serverClasses;
 64  
     }
 65  
 
 66  
     public void setServerClasses(String[] serverClasses)
 67  
     {
 68  0
         this.serverClasses = serverClasses;
 69  0
     }
 70  
 }