]> source.dussan.org Git - archiva.git/blob
2e172f0649235607b4c9ba42ea4957ba307e1ed1
[archiva.git] /
1 package org.apache.maven.archiva.repository.layout;
2
3 /*
4  * Licensed to the Apache Software Foundation (ASF) under one
5  * or more contributor license agreements.  See the NOTICE file
6  * distributed with this work for additional information
7  * regarding copyright ownership.  The ASF licenses this file
8  * to you under the Apache License, Version 2.0 (the
9  * "License"); you may not use this file except in compliance
10  * with the License.  You may obtain a copy of the License at
11  *
12  *  http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing,
15  * software distributed under the License is distributed on an
16  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17  * KIND, either express or implied.  See the License for the
18  * specific language governing permissions and limitations
19  * under the License.
20  */
21
22 /**
23  * FilenameParts - data object for {@link RepositoryLayoutUtils#splitFilename(String, String)} method. 
24  *
25  * @author <a href="mailto:joakime@apache.org">Joakim Erdfelt</a>
26  * @version $Id$
27  */
28 public class FilenameParts
29 {
30     public String artifactId;
31
32     public String version;
33
34     public String classifier;
35
36     public String extension;
37
38     public String toFilename()
39     {
40         StringBuffer sb = new StringBuffer();
41
42         if ( artifactId != null )
43         {
44             sb.append( artifactId );
45         }
46
47         if ( classifier != null )
48         {
49             sb.append( "-" ).append( classifier );
50         }
51
52         if ( version != null )
53         {
54             sb.append( "-" ).append( version );
55         }
56
57         if ( extension != null )
58         {
59             sb.append( "." ).append( extension );
60         }
61
62         return sb.toString();
63     }
64
65     public void appendArtifactId( String piece )
66     {
67         if ( artifactId == null )
68         {
69             artifactId = piece;
70         }
71         else
72         {
73             artifactId += "-" + piece;
74         }
75     }
76
77     public void appendVersion( String piece )
78     {
79         if ( version == null )
80         {
81             version = piece;
82         }
83         else
84         {
85             version += "-" + piece;
86         }
87     }
88
89     public void appendClassifier( String piece )
90     {
91         if ( classifier == null )
92         {
93             classifier = piece;
94         }
95         else
96         {
97             classifier += "-" + piece;
98         }
99     }
100 }