Class TinyMailUrlmapProp
-
- All Implemented Interfaces:
@ConfigurationProperties(value = TinyMailUrlmapProp.Key) public class TinyMailUrlmapProp
- Since:
2023-01-13
trydofor
-
-
Field Summary
Fields Modifier and Type Field Description public final static StringKeypublic StringlistAllpublic final static StringKey$listAllpublic StringlistFailedpublic final static StringKey$listFailedpublic StringlistUndonepublic final static StringKey$listUndonepublic StringbyBizmarkpublic final static StringKey$byBizmarkpublic StringbyRecipientpublic final static StringKey$byRecipientpublic StringbySenderpublic final static StringKey$bySenderpublic StringbySubjectpublic final static StringKey$bySubjectpublic StringloadDetailpublic final static StringKey$loadDetailpublic StringsendMailpublic final static StringKey$sendMailpublic StringsendSavepublic final static StringKey$sendSavepublic StringsendRetrypublic final static StringKey$sendRetrypublic StringsendScanpublic final static StringKey$sendScan
-
Constructor Summary
Constructors Constructor Description TinyMailUrlmapProp()
-
Method Summary
Modifier and Type Method Description StringgetListAll()list summary of all messages, in reverse order by default. voidsetListAll(String listAll)list summary of all messages, in reverse order by default. StringgetListFailed()list summary of failed emails, in reverse order by default. voidsetListFailed(String listFailed)list summary of failed emails, in reverse order by default. StringgetListUndone()list summary of unsuccessful emails, in reverse order by default. voidsetListUndone(String listUndone)list summary of unsuccessful emails, in reverse order by default. StringgetByBizmark()find summary of the email by Biz-Mark, in reverse order by default. voidsetByBizmark(String byBizmark)find summary of the email by Biz-Mark, in reverse order by default. StringgetByRecipient()find summary of the email by RegExp of to/cc/bcc, reverse order by default. voidsetByRecipient(String byRecipient)find summary of the email by RegExp of to/cc/bcc, reverse order by default. StringgetBySender()find summary of the email by from, in reverse order by default. voidsetBySender(String bySender)find summary of the email by from, in reverse order by default. StringgetBySubject()find summary of the email by RegExp of subject, reverse order by default. voidsetBySubject(String bySubject)find summary of the email by RegExp of subject, reverse order by default. StringgetLoadDetail()get mail detail. voidsetLoadDetail(String loadDetail)get mail detail. StringgetSendMail()create or save an email, and send it immediately or asynchronously voidsetSendMail(String sendMail)create or save an email, and send it immediately or asynchronously StringgetSendSave()only save messages, but do not send them. voidsetSendSave(String sendSave)only save messages, but do not send them. StringgetSendRetry()sync retry failed emails, send success or failure, or exceptions voidsetSendRetry(String sendRetry)sync retry failed emails, send success or failure, or exceptions StringgetSendScan()sync scan the emails that need to resend, and send them async, return the number of resend emails. voidsetSendScan(String sendScan)sync scan the emails that need to resend, and send them async, return the number of resend emails. booleanequals(@Nullable() Object o)inthashCode()StringtoString()-
-
Method Detail
-
getListAll
String getListAll()
list summary of all messages, in reverse order by default.
-
setListAll
void setListAll(String listAll)
list summary of all messages, in reverse order by default.
-
getListFailed
String getListFailed()
list summary of failed emails, in reverse order by default.
-
setListFailed
void setListFailed(String listFailed)
list summary of failed emails, in reverse order by default.
-
getListUndone
String getListUndone()
list summary of unsuccessful emails, in reverse order by default.
-
setListUndone
void setListUndone(String listUndone)
list summary of unsuccessful emails, in reverse order by default.
-
getByBizmark
String getByBizmark()
find summary of the email by Biz-Mark, in reverse order by default.
-
setByBizmark
void setByBizmark(String byBizmark)
find summary of the email by Biz-Mark, in reverse order by default.
-
getByRecipient
String getByRecipient()
find summary of the email by RegExp of to/cc/bcc, reverse order by default.
-
setByRecipient
void setByRecipient(String byRecipient)
find summary of the email by RegExp of to/cc/bcc, reverse order by default.
-
getBySender
String getBySender()
find summary of the email by from, in reverse order by default.
-
setBySender
void setBySender(String bySender)
find summary of the email by from, in reverse order by default.
-
getBySubject
String getBySubject()
find summary of the email by RegExp of subject, reverse order by default.
-
setBySubject
void setBySubject(String bySubject)
find summary of the email by RegExp of subject, reverse order by default.
-
getLoadDetail
String getLoadDetail()
get mail detail.
-
setLoadDetail
void setLoadDetail(String loadDetail)
get mail detail.
-
getSendMail
String getSendMail()
create or save an email, and send it immediately or asynchronously
-
setSendMail
void setSendMail(String sendMail)
create or save an email, and send it immediately or asynchronously
-
getSendSave
String getSendSave()
only save messages, but do not send them.
-
setSendSave
void setSendSave(String sendSave)
only save messages, but do not send them.
-
getSendRetry
String getSendRetry()
sync retry failed emails, send success or failure, or exceptions
-
setSendRetry
void setSendRetry(String sendRetry)
sync retry failed emails, send success or failure, or exceptions
-
getSendScan
String getSendScan()
sync scan the emails that need to resend, and send them async, return the number of resend emails.
-
setSendScan
void setSendScan(String sendScan)
sync scan the emails that need to resend, and send them async, return the number of resend emails.
-
hashCode
int hashCode()
-
-
-
-