001    package railo.runtime.search;
002    
003    
004    // FUTURE merege with SearchResulItem
005    
006    public interface SearchResultItemPro extends SearchResulItem {
007    
008    
009        /**
010             * @return the category
011             */
012            public String getCategory();
013            
014            /**
015             * @return the categoryTree
016             */
017            public String getCategoryTree();
018            
019            /**
020             * @return the mimeType
021             */
022            public String getMimeType();
023            /**
024             * @return the author
025             */
026            public String getAuthor();
027    
028            /**
029             * @return the size
030             */
031            public String getSize();
032            
033            
034        /**
035             * @return the contextSummary
036             */
037            public String getContextSummary();
038    }