Java Doc for JDBCMailRepository.java in  » Net » james-2.3.1 » org » apache » james » mailrepository » 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 » Net » james 2.3.1 » org.apache.james.mailrepository 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.apache.james.mailrepository.JDBCMailRepository

All known Subclasses:   org.apache.james.mailrepository.JDBCSpoolRepository,
JDBCMailRepository
public class JDBCMailRepository extends AbstractLogEnabled implements MailRepository,Contextualizable,Serviceable,Configurable,Initializable(Code)
Implementation of a MailRepository on a database.

Requires a configuration element in the .conf.xml file of the form:
<repository destinationURL="db://<datasource>/<table_name>/<repository_name>"
type="MAIL"
model="SYNCHRONOUS"/>
</repository>

destinationURL specifies..(Serge??)
Type can be SPOOL or MAIL
Model is currently not used and may be dropped

Requires a logger called MailRepository.
version:
   CVS $Revision: 494012 $ $Date: 2007-01-08 11:23:58 +0100 (Mo, 08 Jan 2007) $



Field Summary
protected  Contextcontext
    
protected  DataSourceComponentdatasource
    
protected  StringdatasourceName
    
protected  DataSourceSelectordatasources
    
protected  booleanjdbcMailAttributesReady
     "Support for Mail Attributes under JDBC repositories is ready" indicator.
protected  StringrepositoryName
    
protected  SqlResourcessqlQueries
     Contains all of the sql strings for this component.
protected  StringtableName
    
protected  JDBCUtiltheJDBCUtil
    


Method Summary
protected  voidcheckJdbcAttributesSupport(DatabaseMetaData dbMetaData)
     Checks whether support for JDBC Mail atributes is activated for this repository and if everything is consistent.
public  voidconfigure(Configuration conf)
    
public  voidcontextualize(Context context)
    
public  booleanequals(Object obj)
    
protected  ConnectiongetConnection()
    
public  inthashCode()
    
public  voidinitialize()
     Initialises the JDBC repository.
public  Iteratorlist()
     Gets a list of message keys stored in this repository.
public  booleanlock(String key)
    
public  voidremove(Mail mail)
    
public  voidremove(Collection mails)
    
public  voidremove(String key)
     Removes a message identified by a key.
public  Mailretrieve(String key)
     Retrieves a message given a key.
public  voidservice(ServiceManager componentManager)
    
public  voidstore(Mail mc)
     Store this message to the database.
public  booleanunlock(String key)
    

Field Detail
context
protected Context context(Code)
The Avalon context used by the instance



datasource
protected DataSourceComponent datasource(Code)
The JDBC datasource that provides the JDBC connection



datasourceName
protected String datasourceName(Code)
The name of the datasource used by this repository



datasources
protected DataSourceSelector datasources(Code)
The selector used to obtain the JDBC datasource



jdbcMailAttributesReady
protected boolean jdbcMailAttributesReady(Code)
"Support for Mail Attributes under JDBC repositories is ready" indicator.



repositoryName
protected String repositoryName(Code)
The repository name parsed from the destination URL



sqlQueries
protected SqlResources sqlQueries(Code)
Contains all of the sql strings for this component.



tableName
protected String tableName(Code)
The table name parsed from the destination URL



theJDBCUtil
protected JDBCUtil theJDBCUtil(Code)
The JDBCUtil helper class





Method Detail
checkJdbcAttributesSupport
protected void checkJdbcAttributesSupport(DatabaseMetaData dbMetaData) throws SQLException(Code)
Checks whether support for JDBC Mail atributes is activated for this repository and if everything is consistent. Looks for both the "updateMessageAttributesSQL" and "retrieveMessageAttributesSQL" statements in sqlResources and for a table column named "message_attributes".
Parameters:
  dbMetaData - the database metadata to be used to look up the column
throws:
  SQLException - if a fatal situation is met



configure
public void configure(Configuration conf) throws ConfigurationException(Code)

See Also:   org.apache.avalon.framework.configuration.Configurable.configure(Configuration)



contextualize
public void contextualize(Context context) throws ContextException(Code)

See Also:   org.apache.avalon.framework.context.Contextualizable.contextualize(Context)



equals
public boolean equals(Object obj)(Code)

See Also:   java.lang.Object.equals(Object)



getConnection
protected Connection getConnection() throws SQLException(Code)
Gets the SQL connection to be used by this JDBCMailRepository the connection
throws:
  SQLException - if there is an issue with getting the connection



hashCode
public int hashCode()(Code)
Provide a hash code that is consistent with equals for this class the hash code



initialize
public void initialize() throws Exception(Code)
Initialises the JDBC repository. 1) Tests the connection to the database. 2) Loads SQL strings from the SQL definition file, choosing the appropriate SQL for this connection, and performing paramter substitution, 3) Initialises the database with the required tables, if necessary.
throws:
  Exception - if an error occurs



list
public Iterator list() throws MessagingException(Code)
Gets a list of message keys stored in this repository. an Iterator of the message keys



lock
public boolean lock(String key)(Code)
Obtains a lock on a message identified by a key
Parameters:
  key - the key of the message to be locked true if successfully obtained the lock, false otherwise



remove
public void remove(Mail mail) throws MessagingException(Code)
Removes a specified message
Parameters:
  mail - the message to be removed from the repository



remove
public void remove(Collection mails) throws MessagingException(Code)
Removes a Collection of mails from the repository
Parameters:
  mails - The Collection of MailImpl's to delete
throws:
  MessagingException -
since:
   2.2.0



remove
public void remove(String key) throws MessagingException(Code)
Removes a message identified by a key.
Parameters:
  key - the key of the message to be removed from the repository



retrieve
public Mail retrieve(String key) throws MessagingException(Code)
Retrieves a message given a key. At the moment, keys can be obtained from list()
Parameters:
  key - the key of the message to retrieve the mail corresponding to this key, null if none exists



service
public void service(ServiceManager componentManager) throws ServiceException(Code)

See Also:   org.apache.avalon.framework.service.Servicable.service(ServiceManager)



store
public void store(Mail mc) throws MessagingException(Code)
Store this message to the database. Optionally stores the message body to the filesystem and only writes the headers to the database.



unlock
public boolean unlock(String key)(Code)
Releases a lock on a message identified by a key
Parameters:
  key - the key of the message to be unlocked true if successfully released the lock, false otherwise



www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.