View Javadoc

1   //
2   //  ========================================================================
3   //  Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd.
4   //  ------------------------------------------------------------------------
5   //  All rights reserved. This program and the accompanying materials
6   //  are made available under the terms of the Eclipse Public License v1.0
7   //  and Apache License v2.0 which accompanies this distribution.
8   //
9   //      The Eclipse Public License is available at
10  //      http://www.eclipse.org/legal/epl-v10.html
11  //
12  //      The Apache License v2.0 is available at
13  //      http://www.opensource.org/licenses/apache2.0.php
14  //
15  //  You may elect to redistribute this code under either of these licenses.
16  //  ========================================================================
17  //
18  
19  
20  package org.eclipse.jetty.maven.plugin;
21  
22  import org.eclipse.jetty.util.resource.Resource;
23  
24  /**
25   * Overlay
26   *
27   *
28   */
29  public class Overlay
30  {
31      private OverlayConfig _config;
32      private Resource _resource;
33      
34      public Overlay (OverlayConfig config, Resource resource)
35      {
36          _config = config;
37          _resource = resource;
38      }
39  
40      public Overlay (OverlayConfig config)
41      {
42          _config = config;
43      }
44      
45      
46      public void setResource (Resource r)
47      {
48          _resource = r;
49      }
50      
51      public Resource getResource ()
52      {
53          return _resource;
54      }
55      
56      public OverlayConfig getConfig ()
57      {
58          return _config;
59      }
60      
61      public String toString()
62      {
63          StringBuffer strbuff = new StringBuffer();
64          if (_resource != null)
65              strbuff.append(_resource);
66          if (_config != null)
67          {
68              strbuff.append(" [");
69              strbuff.append(_config);
70              strbuff.append("]");
71          }
72          return strbuff.toString();
73      }
74  }