Interface MessageAccessValidatorContext
-
- All Superinterfaces:
UserProvider
public interface MessageAccessValidatorContext extends UserProvider
This interface provides information for message access validator context sensitive data.- Since:
- 12.43
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MailMessage
getMailMessage()
Returns the mail message to be accessedjava.util.Optional<Ticket>
getTicket()
Returns an optional containing the associated ticket if the ticket was found or an empty optional if the associated ticket could not be found.-
Methods inherited from interface com.novomind.ecom.api.iagent.provider.UserProvider
getUser
-
-
-
-
Method Detail
-
getTicket
java.util.Optional<Ticket> getTicket()
Returns an optional containing the associated ticket if the ticket was found or an empty optional if the associated ticket could not be found.- Returns:
- the optional containing the associated ticket or an empty optional
- Since:
- 12.43
-
getMailMessage
MailMessage getMailMessage()
Returns the mail message to be accessed- Returns:
- the mail message to be accessed
- Since:
- 12.43
-
-