KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > net > axis > transport > mailto > MailConstants


1 /*
2  * JBoss, the OpenSource J2EE webOS
3  *
4  * Distributable under LGPL license.
5  * See terms of license at gnu.org.
6  *
7  * Created on Dec 17, 2003
8  */

9 package org.jboss.net.axis.transport.mailto;
10
11 /**
12  * <dl>
13  * <dt><b>Title: </b><dd>Mail Transport Constants</dd>
14  * <p>
15  * <dt><b>Description: </b><dd>Constant values used by the email transport.</dd>
16  * <p>
17  * </dl>
18  * @author <a HREF="mailto:jasone@greenrivercomputing.com">Jason Essington</a>
19  * @version $Revision: 1.1 $
20  */

21 public interface MailConstants
22 {
23    public static final String JavaDoc HEADER_FROM = "From";
24    public static final String JavaDoc HEADER_TO = "To";
25    public static final String JavaDoc HEADER_MESSAGE_ID = "Message-Id";
26    public static final String JavaDoc HEADER_IN_REPLY_TO = "In-Reply-To";
27    public static final String JavaDoc HEADER_CONTENT_TYPE = "Content-Type";
28    public static final String JavaDoc HEADER_CONTENT_TRANSFER_ENCODING = "Content-Transfer-Encoding";
29 }
30
Popular Tags