ListMessagesTag.java
上传用户:dinglihq
上传日期:2013-02-04
资源大小:99958k
文件大小:4k
源码类别:

Java编程

开发平台:

Java

  1. /*
  2.  * @(#)ListMessagesTag.java 1.4 02/04/04
  3.  *
  4.  * Copyright 2001-2002 Sun Microsystems, Inc. All Rights Reserved.
  5.  *
  6.  * Redistribution and use in source and binary forms, with or without
  7.  * modification, are permitted provided that the following conditions
  8.  * are met:
  9.  * 
  10.  * - Redistributions of source code must retain the above copyright
  11.  *   notice, this list of conditions and the following disclaimer.
  12.  * 
  13.  * - Redistribution in binary form must reproduce the above copyright
  14.  *   notice, this list of conditions and the following disclaimer in the
  15.  *   documentation and/or other materials provided with the distribution.
  16.  * 
  17.  * Neither the name of Sun Microsystems, Inc. or the names of contributors
  18.  * may be used to endorse or promote products derived from this software
  19.  * without specific prior written permission.
  20.  * 
  21.  * This software is provided "AS IS," without a warranty of any kind. ALL
  22.  * EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES,
  23.  * INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A
  24.  * PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN AND
  25.  * ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES OR LIABILITIES
  26.  * SUFFERED BY LICENSEE AS A RESULT OF  OR RELATING TO USE, MODIFICATION
  27.  * OR DISTRIBUTION OF THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL
  28.  * SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR
  29.  * FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE
  30.  * DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY,
  31.  * ARISING OUT OF THE USE OF OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS
  32.  * BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
  33.  * 
  34.  * You acknowledge that Software is not designed, licensed or intended
  35.  * for use in the design, construction, operation or maintenance of any
  36.  * nuclear facility.
  37.  *
  38.  */
  39. package demo;
  40. import java.io.*;
  41. import java.util.*;
  42. import javax.mail.*;
  43. import javax.mail.internet.*;
  44. import javax.mail.search.*;
  45. import javax.servlet.jsp.*;
  46. import javax.servlet.jsp.tagext.*;
  47. /**
  48.  * Custom tag for listing messages. The scripting variable is only
  49.  * within the body of the tag.
  50.  */
  51. public class ListMessagesTag extends BodyTagSupport {
  52.     private String folder;
  53.     private String session;
  54.     private int msgNum = 0;
  55.     private int messageCount = 0;
  56.     private Message message;
  57.     private Message[] messages;
  58.     private MessageInfo messageinfo;
  59.     
  60.     /**
  61.      * folder attribute getter method.
  62.      */
  63.     public String getFolder() {
  64.         return folder;
  65.     }
  66.     
  67.     /**
  68.      * session attribute getter method.
  69.      */
  70.     public String getSession() {
  71.         return session;
  72.     }
  73.     
  74.     /**
  75.      * folder setter method.
  76.      */
  77.     public void setFolder(String folder) {
  78.         this.folder = folder;
  79.     }
  80.     /**
  81.      * session attribute setter method.
  82.      */
  83.     public void setSession(String session) {
  84.         this.session = session;
  85.     }
  86.     /**
  87.      * Method for processing the start of the tag.
  88.      */
  89.     public int doStartTag() throws JspException {
  90.         messageinfo = new MessageInfo();
  91.        
  92.         try {
  93.             Folder folder = (Folder)pageContext.getAttribute(
  94. getFolder(), PageContext.SESSION_SCOPE);
  95.             FlagTerm ft = new FlagTerm(new Flags(Flags.Flag.DELETED), false);
  96.             messages = folder.search(ft);
  97.             messageCount = messages.length;
  98.         } catch (Exception ex) {
  99.             throw new JspException(ex.getMessage());
  100.         }
  101.         if (messageCount > 0) {
  102.             getMessage();
  103.             return BodyTag.EVAL_BODY_TAG;
  104.         } else
  105.             return BodyTag.SKIP_BODY;
  106.     }
  107.    
  108.     /**
  109.      * Method for processing the body content of the tag.
  110.      */
  111.     public int doAfterBody() throws JspException {
  112.         
  113.         BodyContent body = getBodyContent();
  114.         try {
  115.             body.writeOut(getPreviousOut());
  116.         } catch (IOException e) {
  117.             throw new JspTagException("IterationTag: " + e.getMessage());
  118.         }
  119.         
  120.         // clear up so the next time the body content is empty
  121.         body.clearBody();
  122.        
  123.         if (msgNum < messageCount) {
  124.             getMessage();
  125.             return BodyTag.EVAL_BODY_TAG;
  126.         } else {
  127.             return BodyTag.SKIP_BODY;
  128.         }
  129.     }
  130.     
  131.     /**
  132.      * Helper method for retrieving messages.
  133.      */
  134.     private void getMessage() throws JspException {
  135.         message = messages[msgNum++];
  136.         messageinfo.setMessage(message);
  137.         pageContext.setAttribute(getId(), messageinfo);
  138.     }
  139. }