1 package org.apache.archiva.metadata.model;
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
14 * http://www.apache.org/licenses/LICENSE-2.0
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
24 public class MailingList
26 private String mainArchiveUrl;
28 private List<String> otherArchives;
32 private String postAddress;
34 private String subscribeAddress;
36 private String unsubscribeAddress;
38 public void setMainArchiveUrl( String mainArchiveUrl )
40 this.mainArchiveUrl = mainArchiveUrl;
43 public String getMainArchiveUrl()
45 return mainArchiveUrl;
48 public void setOtherArchives( List<String> otherArchives )
50 this.otherArchives = otherArchives;
53 public List<String> getOtherArchives()
58 public void setName( String name )
63 public void setPostAddress( String postAddress )
65 this.postAddress = postAddress;
68 public void setSubscribeAddress( String subscribeAddress )
70 this.subscribeAddress = subscribeAddress;
73 public void setUnsubscribeAddress( String unsubscribeAddress )
75 this.unsubscribeAddress = unsubscribeAddress;
78 public String getSubscribeAddress()
80 return subscribeAddress;
83 public String getUnsubscribeAddress()
85 return unsubscribeAddress;
88 public String getPostAddress()
93 public String getName()