Interface TinyMailListService

  • All Implemented Interfaces:

    
    public interface TinyMailListService
    
                        
    Since:

    2023-01-07

    Author:

    trydofor

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      abstract PageResult<TinyMailPlain> listAll(PageQuery pq) list summary of all messages, in reverse order by default.
      abstract PageResult<TinyMailPlain> listFailed(PageQuery pq) list summary of failed emails, in reverse order by default.
      abstract PageResult<TinyMailPlain> listUndone(PageQuery pq) list summary of unsuccessful emails, in reverse order by default.
      abstract PageResult<TinyMailPlain> listByBizMark(String mark, PageQuery pq) find summary of the email by Biz-Mark, in reverse order by default.
      abstract PageResult<TinyMailPlain> listByRecipient(String mailRegex, PageQuery pq) find summary of the email by RegExp of to/cc/bcc, reverse order by default.
      abstract PageResult<TinyMailPlain> listBySender(String mail, PageQuery pq) find summary of the email by from, in reverse order by default.
      abstract PageResult<TinyMailPlain> listBySubject(String subjRegex, PageQuery pq) find summary of the email by RegExp of subject, reverse order by default.
      abstract TinyMailPlain loadDetail(long id) get mail detail
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • Method Detail

      • listAll

         abstract PageResult<TinyMailPlain> listAll(PageQuery pq)

        list summary of all messages, in reverse order by default.

      • listFailed

         abstract PageResult<TinyMailPlain> listFailed(PageQuery pq)

        list summary of failed emails, in reverse order by default.

      • listUndone

         abstract PageResult<TinyMailPlain> listUndone(PageQuery pq)

        list summary of unsuccessful emails, in reverse order by default.

      • listByBizMark

         abstract PageResult<TinyMailPlain> listByBizMark(String mark, PageQuery pq)

        find summary of the email by Biz-Mark, in reverse order by default.

      • listByRecipient

         abstract PageResult<TinyMailPlain> listByRecipient(String mailRegex, PageQuery pq)

        find summary of the email by RegExp of to/cc/bcc, reverse order by default.

      • listBySender

         abstract PageResult<TinyMailPlain> listBySender(String mail, PageQuery pq)

        find summary of the email by from, in reverse order by default.

      • listBySubject

         abstract PageResult<TinyMailPlain> listBySubject(String subjRegex, PageQuery pq)

        find summary of the email by RegExp of subject, reverse order by default.