emailexecutormbean.java
来自「java开源的企业总线.xmlBlaster」· Java 代码 · 共 50 行
JAVA
50 行
/** * */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 + =
减小字号Ctrl + -
显示快捷键?