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