]> source.dussan.org Git - archiva.git/blob
bc553e3cd4e725457f89219840e27ac52ebee49a
[archiva.git] /
1 package org.apache.archiva.web.xmlrpc.api.beans;
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 java.io.Serializable;
23 import java.util.Date;
24
25 import com.atlassian.xmlrpc.ServiceBean;
26 import com.atlassian.xmlrpc.ServiceBeanField;
27
28 @ServiceBean
29 public class Artifact
30     implements Serializable
31 {
32     private String repositoryId;
33     
34     private String groupId;
35
36     private String artifactId;
37
38     private String version;
39
40     private String type;
41
42     private Date whenGathered;
43     
44     public Artifact()
45     {
46
47     }
48
49     public Artifact( String repositoryId, String groupId, String artifactId, String version,
50                      String type, Date whenGathered )
51     {   
52         this.repositoryId = repositoryId;
53         this.groupId = groupId;
54         this.artifactId = artifactId;
55         this.version = version;
56         this.type = type;
57         this.whenGathered = whenGathered;
58     }
59
60     public String getGroupId()
61     {
62         return groupId;
63     }
64
65     public String getArtifactId()
66     {
67         return artifactId;
68     }
69
70     public String getVersion()
71     {
72         return version;
73     }
74
75     public String getType()
76     {
77         return type;
78     }
79
80     public Date getWhenGathered()
81     {
82         return whenGathered;
83     }
84
85     @ServiceBeanField( "groupId" )
86     public void setGroupId( String groupId )
87     {
88         this.groupId = groupId;
89     }
90
91     @ServiceBeanField( "artifactId" )
92     public void setArtifactId( String artifactId )
93     {
94         this.artifactId = artifactId;
95     }
96
97     @ServiceBeanField( "version" )
98     public void setVersion( String version )
99     {
100         this.version = version;
101     }
102
103     @ServiceBeanField( "type" )
104     public void setType( String type )
105     {
106         this.type = type;
107     }
108
109     @ServiceBeanField( "whenGathered" )
110     public void setWhenGathered( Date whenGathered )
111     {
112         this.whenGathered = whenGathered;
113     }
114
115     public String getRepositoryId()
116     {
117         return repositoryId;
118     }
119
120     public void setRepositoryId( String repositoryId )
121     {
122         this.repositoryId = repositoryId;
123     }
124 }