View Javadoc

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  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          return host;
24      }
25  
26      public void setHost(String host)
27      {
28          this.host = host;
29      }
30  
31      public String getDirectory()
32      {
33          return directory;
34      }
35  
36      public void setDirectory(String directory)
37      {
38          this.directory = directory;
39      }
40  
41      public int getPort()
42      {
43          return port;
44      }
45  
46      public void setPort(int port)
47      {
48          this.port = port;
49      }
50  
51      public String[] getSystemClasses()
52      {
53          return systemClasses;
54      }
55  
56      public void setSystemClasses(String[] systemClasses)
57      {
58          this.systemClasses = systemClasses;
59      }
60  
61      public String[] getServerClasses()
62      {
63          return serverClasses;
64      }
65  
66      public void setServerClasses(String[] serverClasses)
67      {
68          this.serverClasses = serverClasses;
69      }
70  }