📄 emailexecutormbean.java
字号:
/** * */package org.xmlBlaster.util.protocol.email;import org.xmlBlaster.util.protocol.RequestReplyExecutorMBean;/** * @author xmlblast * */public interface EmailExecutorMBean extends RequestReplyExecutorMBean { /** * @return Returns the cc. */ public String getCc(); /** * A comma separated list of email addresses, e.g. "joe@localhost,jack@localhost" * @param cc The carbon copy addresses */ public void setCc(String cc); public String getTo(); public void setTo(String to); public String getFrom(); public void setFrom(String from); /** * @return Returns the bcc. */ public String getBcc(); /** * A comma separated list of email addresses, e.g. "joe@localhost,jack@localhost" * @param bcc The blind cc to set. */ public void setBcc(String bcc); /** * Returns a comma seperated list of all 'from email addresses'. * Used for JMX. * @return For example "joe@localhost,blue@localhost", never null */ public String getLoopProtectionList();}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -