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

Java编程

开发平台:

Java

  1. /*
  2.  * @(#)MessageTag.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.util.*;
  41. import javax.mail.*;
  42. import javax.mail.internet.*;
  43. import javax.servlet.jsp.*;
  44. import javax.servlet.jsp.tagext.*;
  45. /**
  46.  * Custom tag for retrieving a message.
  47.  */
  48. public class MessageTag extends TagSupport {
  49.     private String folder;
  50.     private String session;
  51.     private int num = 1;
  52.     /**
  53.      * folder attribute setter method.
  54.      */
  55.     public String getFolder() {
  56.         return folder;
  57.     }
  58.     
  59.     /**
  60.      * num attribute getter method.
  61.      */
  62.     public String getNum() {
  63.         return Integer.toString(num);
  64.     }
  65.     
  66.     /**
  67.      * session attribute getter method.
  68.      */
  69.     public String getSession() {
  70.         return session;
  71.     }
  72.     
  73.     /**
  74.      * folder setter method.
  75.      */
  76.     public void setFolder(String folder) {
  77.         this.folder = folder;
  78.     }
  79.     /**
  80.      * num attribute setter method.
  81.      */
  82.     public void setNum(String num) {
  83.         this.num = Integer.parseInt(num);
  84.     }
  85.     
  86.     /**
  87.      * session attribute setter method.
  88.      */
  89.     public void setSession(String session) {
  90.         this.session = session;
  91.     }
  92.     /**
  93.      * Method for processing the start of the tag.
  94.      */
  95.     public int doStartTag() throws JspException {
  96.         MessageInfo messageinfo = new MessageInfo();
  97.         try {
  98.     Folder f = (Folder)pageContext.getAttribute(
  99. getFolder(), PageContext.SESSION_SCOPE);
  100.             Message message = f.getMessage(num);
  101.             messageinfo.setMessage(message);
  102.             pageContext.setAttribute(getId(), messageinfo);
  103.         } catch (Exception ex) {
  104.             throw new JspException(ex.getMessage());
  105.         }
  106.  
  107.         return SKIP_BODY;
  108.    }
  109. }