Package org.apache.james.mime4j.dom.field

Examples of org.apache.james.mime4j.dom.field.ContentMD5Field


     * See <a href='http://tools.ietf.org/html/rfc1864'>RFC1864</a>.
     * @return raw encoded content-md5
     * or null if no header exists
     */
    public String getContentMD5Raw() {
        ContentMD5Field contentMD5Field = (ContentMD5Field) fields.get(CONTENT_MD5);
        return contentMD5Field != null ? contentMD5Field.getMD5Raw() : null;
    }
View Full Code Here

TOP

Related Classes of org.apache.james.mime4j.dom.field.ContentMD5Field

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.