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

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


     * <code>Content-ID</code> header.
     * @return value of the <code>Content-ID</code> when present,
     * null otherwise
     */
    public String getContentId() {
        ContentIdField contentIdField = (ContentIdField) fields.get(CONTENT_ID);
        return contentIdField != null ? contentIdField.getId() : null;
    }
View Full Code Here

TOP

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

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.