org.apache.archiva.metadata.model
Class MailingList

java.lang.Object
  extended by org.apache.archiva.metadata.model.MailingList
All Implemented Interfaces:
Serializable

public class MailingList
extends Object
implements Serializable

Information about the available mailing lists for communicating with the project.

See Also:
Serialized Form
To Do:
considering moving this to a facet - avoid referring to it externally

Field Summary
private  String mainArchiveUrl
          The primary archive URL for this mailing list.
private  String name
          The name of the mailing list, eg.
private  List<String> otherArchives
          A list of other URLs to archives of the mailing list.
private  String postAddress
          The email address to post a new message to the mailing list, if applicable.
private  String subscribeAddress
          The email address to send a message to to subscribe to the mailing list, if applicable.
private  String unsubscribeAddress
          The email address to send a message to to unsubscribe from the mailing list, if applicable.
 
Constructor Summary
MailingList()
           
 
Method Summary
 String getMainArchiveUrl()
           
 String getName()
           
 List<String> getOtherArchives()
           
 String getPostAddress()
           
 String getSubscribeAddress()
           
 String getUnsubscribeAddress()
           
 void setMainArchiveUrl(String mainArchiveUrl)
           
 void setName(String name)
           
 void setOtherArchives(List<String> otherArchives)
           
 void setPostAddress(String postAddress)
           
 void setSubscribeAddress(String subscribeAddress)
           
 void setUnsubscribeAddress(String unsubscribeAddress)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

mainArchiveUrl

private String mainArchiveUrl
The primary archive URL for this mailing list.


otherArchives

private List<String> otherArchives
A list of other URLs to archives of the mailing list.


name

private String name
The name of the mailing list, eg. Archiva Developers List.


postAddress

private String postAddress
The email address to post a new message to the mailing list, if applicable.


subscribeAddress

private String subscribeAddress
The email address to send a message to to subscribe to the mailing list, if applicable.


unsubscribeAddress

private String unsubscribeAddress
The email address to send a message to to unsubscribe from the mailing list, if applicable.

Constructor Detail

MailingList

public MailingList()
Method Detail

setMainArchiveUrl

public void setMainArchiveUrl(String mainArchiveUrl)

getMainArchiveUrl

public String getMainArchiveUrl()

setOtherArchives

public void setOtherArchives(List<String> otherArchives)

getOtherArchives

public List<String> getOtherArchives()

setName

public void setName(String name)

setPostAddress

public void setPostAddress(String postAddress)

setSubscribeAddress

public void setSubscribeAddress(String subscribeAddress)

setUnsubscribeAddress

public void setUnsubscribeAddress(String unsubscribeAddress)

getSubscribeAddress

public String getSubscribeAddress()

getUnsubscribeAddress

public String getUnsubscribeAddress()

getPostAddress

public String getPostAddress()

getName

public String getName()


Copyright © 2006-2013 The Apache Software Foundation. All Rights Reserved.