Examples of AttachmentSearchItem


Examples of org.encuestame.business.search.AttachmentSearchItem

     * Convert Lucene Document Item to Attachment Search Bean.
     * @param docItem Lucene Document
     * @return
     */
    public static final AttachmentSearchItem convertDoctoSearchItem(final Document document){
        final AttachmentSearchItem attachItem = new AttachmentSearchItem();
        attachItem.setAttachId(1L);
        attachItem.setDescription(document.get("filename"));
        return attachItem;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.