]> source.dussan.org Git - archiva.git/blob
a9530b79dd1b750349ec64d53b2642af0ad6975b
[archiva.git] /
1 package org.apache.archiva.metadata.model;
2
3 import java.util.List;
4
5 /*
6  * Licensed to the Apache Software Foundation (ASF) under one
7  * or more contributor license agreements.  See the NOTICE file
8  * distributed with this work for additional information
9  * regarding copyright ownership.  The ASF licenses this file
10  * to you under the Apache License, Version 2.0 (the
11  * "License"); you may not use this file except in compliance
12  * with the License.  You may obtain a copy of the License at
13  *
14  *   http://www.apache.org/licenses/LICENSE-2.0
15  *
16  * Unless required by applicable law or agreed to in writing,
17  * software distributed under the License is distributed on an
18  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
19  * KIND, either express or implied.  See the License for the
20  * specific language governing permissions and limitations
21  * under the License.
22  */
23
24 public class MailingList
25 {
26     private String mainArchiveUrl;
27
28     private List<String> otherArchives;
29
30     private String name;
31
32     private String postAddress;
33
34     private String subscribeAddress;
35
36     private String unsubscribeAddress;
37
38     public void setMainArchiveUrl( String mainArchiveUrl )
39     {
40         this.mainArchiveUrl = mainArchiveUrl;
41     }
42
43     public String getMainArchiveUrl()
44     {
45         return mainArchiveUrl;
46     }
47
48     public void setOtherArchives( List<String> otherArchives )
49     {
50         this.otherArchives = otherArchives;
51     }
52
53     public List<String> getOtherArchives()
54     {
55         return otherArchives;
56     }
57
58     public void setName( String name )
59     {
60         this.name = name;
61     }
62
63     public void setPostAddress( String postAddress )
64     {
65         this.postAddress = postAddress;
66     }
67
68     public void setSubscribeAddress( String subscribeAddress )
69     {
70         this.subscribeAddress = subscribeAddress;
71     }
72
73     public void setUnsubscribeAddress( String unsubscribeAddress )
74     {
75         this.unsubscribeAddress = unsubscribeAddress;
76     }
77
78     public String getSubscribeAddress()
79     {
80         return subscribeAddress;
81     }
82
83     public String getUnsubscribeAddress()
84     {
85         return unsubscribeAddress;
86     }
87
88     public String getPostAddress()
89     {
90         return postAddress;
91     }
92
93     public String getName()
94     {
95         return name;
96     }
97 }