Source Code Cross Referenced for QueryEngine.java in  » Mail-Clients » columba-1.4 » org » columba » mail » folder » search » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Mail Clients » columba 1.4 » org.columba.mail.folder.search 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


01:        //The contents of this file are subject to the Mozilla Public License Version 1.1
02:        //(the "License"); you may not use this file except in compliance with the 
03:        //License. You may obtain a copy of the License at http://www.mozilla.org/MPL/
04:        //
05:        //Software distributed under the License is distributed on an "AS IS" basis,
06:        //WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 
07:        //for the specific language governing rights and
08:        //limitations under the License.
09:        //
10:        //The Original Code is "The Columba Project"
11:        //
12:        //The Initial Developers of the Original Code are Frederik Dietz and Timo Stich.
13:        //Portions created by Frederik Dietz and Timo Stich are Copyright (C) 2003. 
14:        //
15:        //All Rights Reserved.
16:
17:        package org.columba.mail.folder.search;
18:
19:        import java.util.List;
20:
21:        import org.columba.core.filter.FilterCriteria;
22:        import org.columba.core.filter.IFilterRule;
23:
24:        /**
25:         * Custom implementation for performing optimized search requests.
26:         *
27:         * @author fdietz
28:         */
29:        public interface QueryEngine {
30:            /**
31:             * Get list of capabilities.
32:             * <p>
33:             * All supported search requests as for example:
34:             * "Body", "Subject", etc.
35:             *
36:             * @return                capability list
37:             */
38:            String[] getCaps();
39:
40:            /**
41:             * Sync engine with folder data.
42:             * <p>
43:             * This can become necessary if the folder data is
44:             * inconsistent.
45:             *
46:             * @throws Exception
47:             */
48:            void sync() throws Exception;
49:
50:            /**
51:             * Execute a list of {@link FilterCriteria}.
52:             *
53:             * @param filter                list of filter criteria
54:             * @return                                list of matching message UIDs
55:             * @throws Exception
56:             */
57:            List queryEngine(IFilterRule filter) throws Exception;
58:
59:            /**
60:             * Execute a list of {@link FilterCriteria}.
61:             * <p>
62:             * Perform search request on a subset of messages only.
63:             *
64:             * @param filter                list of filter criteria
65:             * @param uids                        list of UIDs to perform search request
66:             * @return                                list of matching message UIDs
67:             * @throws Exception
68:             */
69:            List queryEngine(IFilterRule filter, Object[] uids)
70:                    throws Exception;
71:
72:            /**
73:             * Notify search engine that a message was added.
74:             *
75:             * @param message                message
76:             * @throws Exception
77:             */
78:            void messageAdded(Object uid) throws Exception;
79:
80:            /**
81:             * Notify search engine that a message was removed
82:             *
83:             * @param uid                        message UID
84:             * @throws Exception
85:             */
86:            void messageRemoved(Object uid) throws Exception;
87:
88:            /**
89:             * Reset search engine.
90:             *
91:             * @throws Exception
92:             */
93:            void reset() throws Exception;
94:
95:            void save();
96:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.