]> source.dussan.org Git - archiva.git/blob
194f07159dbc8e69ea21bf317d5c1e5811f71987
[archiva.git] /
1 package org.apache.archiva.repository.content.base;
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 import org.apache.archiva.repository.content.Project;
23 import org.apache.archiva.repository.content.Version;
24 import org.apache.archiva.repository.storage.StorageAsset;
25 import org.apache.commons.lang3.StringUtils;
26
27 public class ArchivaVersion extends ArchivaContentItem implements Version
28 {
29
30     private String version;
31     private StorageAsset asset;
32     private Project project;
33
34     private ArchivaVersion() {
35
36     }
37
38     public static ProjectBuilder withVersion(String version) {
39         return new Builder( ).withVersion( version );
40     }
41
42     @Override
43     public String getVersion( )
44     {
45         return version;
46     }
47
48     @Override
49     public StorageAsset getAsset( )
50     {
51         return asset;
52     }
53
54     @Override
55     public Project getProject( )
56     {
57         return project;
58     }
59
60     public interface ProjectBuilder {
61         Builder withProject( Project project );
62     }
63
64     public static final class Builder implements ProjectBuilder {
65
66         private ArchivaVersion version  = new ArchivaVersion();
67
68         ProjectBuilder withVersion( String version )
69         {
70             if ( StringUtils.isEmpty( version ) ) {
71                 throw new IllegalArgumentException( "Version parameter must not be empty or null." );
72             }
73             this.version.version = version;
74             return this;
75         }
76
77
78         @Override
79         public Builder withProject( Project project )
80         {
81             this.version.project = project;
82             return this;
83         }
84
85         public Builder withAsset( StorageAsset asset )
86         {
87             this.version.asset = asset;
88             return this;
89         }
90
91         public Builder withAttribute(String key, String value) {
92             this.version.putAttribute( key, value );
93             return this;
94         }
95
96         public ArchivaVersion build() {
97             if (this.version.asset == null) {
98                 this.version.project.getRepository( ).getRepository( ).getAsset( "" );
99             }
100             return this.version;
101         }
102     }
103
104 }