Class MailingListComponent
- java.lang.Object
-
- org.silverpeas.components.mailinglist.model.MailingListComponent
-
- All Implemented Interfaces:
MessageListener
public class MailingListComponent extends Object implements MessageListener
-
-
Constructor Summary
Constructors Constructor Description MailingListComponent(String componentId)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleancheckSender(String email)Checks if the sender is authorized to send to this mailing list.StringgetComponentId()Returns the Silverpeas component's id.voidonMessage(MessageEvent event)Method called when new messages are available.
-
-
-
Constructor Detail
-
MailingListComponent
public MailingListComponent(String componentId)
-
-
Method Detail
-
checkSender
public boolean checkSender(String email)
Description copied from interface:MessageListenerChecks if the sender is authorized to send to this mailing list.- Specified by:
checkSenderin interfaceMessageListener- Returns:
- true if the sender is authorized - false otherwise.
-
getComponentId
public String getComponentId()
Description copied from interface:MessageListenerReturns the Silverpeas component's id. This is used to save attachements.- Specified by:
getComponentIdin interfaceMessageListener- Returns:
- the Silverpeas component's id.
-
onMessage
public void onMessage(MessageEvent event)
Description copied from interface:MessageListenerMethod called when new messages are available.- Specified by:
onMessagein interfaceMessageListener- Parameters:
event- the message event.
-
-