Java Doc for MBoxMailRepository.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.MBoxMailRepository

MBoxMailRepository
public class MBoxMailRepository extends AbstractLogEnabled implements MailRepository,Serviceable,Configurable,Initializable(Code)
Implementation of a MailRepository using UNIX mbox files.

Requires a configuration element in the .conf.xml file of the form:
<repository destinationURL="mbox://<directory>"
type="MAIL"
</directory> is where the individual mbox files are read from/written to
Type can ONLY be MAIL (SPOOL is NOT supported)

Requires a logger called MailRepository.

Implementation notes:

This class keeps an internal store of the mbox file When the internal mbox file is updated (added/deleted) then the file will be re-read from disk and then written back. This is a bit inefficent but means that the file on disk should be correct.

The mbox store is mainly meant to be used as a one-way street. Storing new emails is very fast (append to file) whereas reading them (via POP3) is slower (read from disk and parse). Therefore this implementation is best suited to people who wish to use the mbox format for taking data out of James and into something else (IMAP server or mail list displayer)
version:
   CVS $Revision: 495537 $


Inner Class :public interface MessageAction

Field Summary
final static  longDEFAULTMLISTCAPACITY
    
final static  StringLOCKEXT
    
final static  intLOCKSLEEPDELAY
    
final static  intMAXSLEEPTIMES
    
final static  longMLISTPRESIZEFACTOR
    
final static  StringWORKEXT
    
final static  SimpleDateFormatdy
    


Method Summary
public  voidconfigure(Configuration conf)
    
public  voidinitialize()
    
public  Iteratorlist()
    
public  booleanlock(String key)
    
public static  voidmain(String[] args)
    
public  voidremove(Mail mail)
    
public  voidremove(Collection mails)
    
public  voidremove(String key)
    
public  Mailretrieve(String key)
     Get a message from the backing store (disk)
Parameters:
  key - The mail found from the key.
public  voidservice(ServiceManager componentManager)
    
public  voidstore(Mail mc)
    
public  booleanunlock(String key)
    

Field Detail
DEFAULTMLISTCAPACITY
final static long DEFAULTMLISTCAPACITY(Code)



LOCKEXT
final static String LOCKEXT(Code)



LOCKSLEEPDELAY
final static int LOCKSLEEPDELAY(Code)



MAXSLEEPTIMES
final static int MAXSLEEPTIMES(Code)



MLISTPRESIZEFACTOR
final static long MLISTPRESIZEFACTOR(Code)



WORKEXT
final static String WORKEXT(Code)



dy
final static SimpleDateFormat dy(Code)





Method Detail
configure
public void configure(Configuration conf) throws ConfigurationException(Code)
Configure the component
Parameters:
  conf -
throws:
  ConfigurationException -



initialize
public void initialize() throws Exception(Code)
Initialise the component
throws:
  Exception -



list
public Iterator list()(Code)
Return the list of the current messages' keys A list of the keys of the emails currently loaded



lock
public boolean lock(String key)(Code)
Not implemented
Parameters:
  key -



main
public static void main(String[] args)(Code)



remove
public void remove(Mail mail)(Code)
Remove an existing message
Parameters:
  mail -



remove
public void remove(Collection mails)(Code)
Remove a list of messages from disk The collection is simply a list of mails to delete
Parameters:
  mails -



remove
public void remove(String key)(Code)
Remove a mail from the mbox file
Parameters:
  key - The key of the mail to delete



retrieve
public Mail retrieve(String key)(Code)
Get a message from the backing store (disk)
Parameters:
  key - The mail found from the key. Returns null if the key is not found



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

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



store
public void store(Mail mc)(Code)
Store the given email in the current mbox file
Parameters:
  mc - The mail to store



unlock
public boolean unlock(String key)(Code)
Not implemented
Parameters:
  key -



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