⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 i_adminpop3driver.java

📁 java开源的企业总线.xmlBlaster
💻 JAVA
字号:
/*------------------------------------------------------------------------------Name:      I_AdminPop3Driver.javaProject:   xmlBlaster.orgCopyright: xmlBlaster.org, see xmlBlaster-LICENSE fileComment:   Interface to access information about a client instance------------------------------------------------------------------------------*/package org.xmlBlaster.util.admin;/** * Declares available methods to control the POP3 email poller.   * * @author xmlBlaster@marcelruff.info * @since 1.0.8 * @see org.xmlBlaster.util.protocol.email.Pop3Driver */public interface I_AdminPop3Driver extends I_AdminService {   /**    * Access the polling interval    * @return The pollingInterval in milli seconds    */   public long getPollingInterval();   /**    * Set the polling interval    * @param pollingInterval [milli seconds]    */   public void setPollingInterval(long pollingInterval);      /**    * Access the POP3 MTA access configuration    * @return For example "pop3://user:password@host:port/INBOX"    */   public String getPop3Url();   /**    * @param pop3Url Syntax is "pop3://user:password@host:port/INBOX"    */   public void setPop3Url(String pop3Url);      /**    * Access a list of registered java listeners.     * @return Keys of interested party for incoming POP3 mails    */   public String getListeners();   /**    * @return Returns the holdbackExpireTimeout.    */   public long getHoldbackExpireTimeout();   /**    * Configure how long a not yet dispatched message shall live in the Pop3Driver map.    * Note that the map is transient, after restart such mails are lost (but resend by the server).     * @param holdbackExpireTimeout In milli seconds, set to zero to switch holback off    */   public void setHoldbackExpireTimeout(long holdbackExpireTimeout);      /**    * Get the number of received emails for which no java bean is interested.     * @return Number of emails    */   public int getNumberOfHoldbackEmails();}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -