View Javadoc

1   /**
2    *  Copyright 2006 The Apache Software Foundation
3    *
4    *  Licensed under the Apache License, Version 2.0 (the "License");
5    *  you may not use this file except in compliance with the License.
6    *  You may obtain a copy of the License at
7    *
8    *     http://www.apache.org/licenses/LICENSE-2.0
9    *
10   *  Unless required by applicable law or agreed to in writing, software
11   *  distributed under the License is distributed on an "AS IS" BASIS,
12   *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   *  See the License for the specific language governing permissions and
14   *  limitations under the License.
15   */
16  
17  package org.apache.geronimo.plugin.car;
18  
19  /**
20   * Represents a Maven-artifact with additional classparh prefix details to build a jar's Manifest Class-Path.
21   *
22   * @version $Rev:385659 $ $Date: 2006-08-15 06:02:48 +0200 (mar., 15 août 2006) $
23   */
24  public class ClasspathElement
25      extends ArtifactItem
26  {
27      /**
28       * Prefix to be prepended to the artifact, like <tt>../lib</tt>.
29       *
30       * @parameter
31       */
32      private String classpathPrefix;
33  
34      /**
35       * @return Returns the classpath prefix.
36       */
37      public String getClasspathPrefix() {
38          return classpathPrefix;
39      }
40  
41      /**
42       * @param classpathPrefix   The classpath prefix
43       */
44      public void setClasspathPrefix(final String classpathPrefix) {
45          this.classpathPrefix = classpathPrefix;
46      }
47  }