Java Doc for MailServiceImpl.java in  » J2EE » JOnAS-4.8.6 » org » objectweb » jonas » mail » 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 » J2EE » JOnAS 4.8.6 » org.objectweb.jonas.mail 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.objectweb.jonas.service.AbsServiceImpl
   org.objectweb.jonas.mail.MailServiceImpl

MailServiceImpl
public class MailServiceImpl extends AbsServiceImpl implements MailService,MailServiceImplMBean(Code)
This class provides an implementation of the javaMail service.
author:
   Florent Benoit
author:
   Ludovic Bert
author:
   Contributor(s):
author:
   Adriana Danes :
author:
   - Make possible to change configuration of a JOnAS mail factory object.
author:
   - Make possible to change the JNDI name of a JOnAS mail factory object.


Field Summary
final public static  StringCLASS
    
final public static  StringFACTORIES
    
final public static  StringMIMEPART_PROPERTY_TYPE
    
final public static  StringPROPERTY_NAME
    
final public static  StringPROPERTY_TYPE
    
final public static  StringSESSION_PROPERTY_TYPE
    
protected  StringdomainName
    
protected  StringserverName
    


Method Summary
public  voidcreateMailFactory(String factoryName, Properties props)
     Create a mail factory with the specified properties and register it into the registry.
public  voidcreateMailFactoryMBean(String name, Properties props, Boolean loadFromFile)
     Create a mail factory with the specified properties and register it into the registry.
protected  voiddoInit(Context ctx)
     Init the Mail service.
protected  voiddoStart()
     Start the Mail Service.
protected  voiddoStop()
     Stop the Mail service.
public  IntegergetCurrentNumberOfMailFactories()
    
public  IntegergetCurrentNumberOfMimeMailFactories()
    
public  IntegergetCurrentNumberOfSessionMailFactories()
    
public  StringgetFactoryName(String jndiName)
     Gets the factory name given the jndi name.
public  PropertiesgetMailFactoryPropertiesFile(String configFile)
    
public  ListgetMailFactoryPropertiesFiles()
    
public  ListgetMimePartMailFactoryPropertiesFiles()
    
public  ListgetSessionMailFactoryPropertiesFiles()
    
public  voidrecreateJavaMailFactory(JavaMail factory)
     This method is used when a Mail Factory configuration is modified via jonasAdmin.
public  voidrenameJavaMailFactory(String oldName, JavaMail factory)
     This method is used when a particular Mail Factory configuration operation is done via jonasAdmin : when the JNDI name of this resource is modified.
public  voidunbindMailFactories()
     Unregister all the binding factories on the server and in JMX Server.
public  voidunbindMailFactoryMBean(String factoryName)
     Unregister the factory with the given name.

Field Detail
CLASS
final public static String CLASS(Code)
Mail service configuration parameters (class)



FACTORIES
final public static String FACTORIES(Code)
Mail service configuration parameters (factories)



MIMEPART_PROPERTY_TYPE
final public static String MIMEPART_PROPERTY_TYPE(Code)



PROPERTY_NAME
final public static String PROPERTY_NAME(Code)
JOnAS-specific properties (name)



PROPERTY_TYPE
final public static String PROPERTY_TYPE(Code)
JOnAS-specific properties (type)



SESSION_PROPERTY_TYPE
final public static String SESSION_PROPERTY_TYPE(Code)



domainName
protected String domainName(Code)



serverName
protected String serverName(Code)





Method Detail
createMailFactory
public void createMailFactory(String factoryName, Properties props) throws MailServiceException(Code)
Create a mail factory with the specified properties and register it into the registry.
Parameters:
  factoryName - name of the factory to create
Parameters:
  props - the properties used to configure the mail factory.
throws:
  MailServiceException - if the creation or the registration ofthe factory failed.



createMailFactoryMBean
public void createMailFactoryMBean(String name, Properties props, Boolean loadFromFile) throws MailServiceException(Code)
Create a mail factory with the specified properties and register it into the registry.
Parameters:
  name - the mail factory name
Parameters:
  props - the properties used to configure the mail factory.
Parameters:
  loadFromFile - true if the mail factory is loaded from a .properties file
throws:
  MailServiceException - if the creation or the registration ofthe factory failed.
throws:
  MailServiceException -



doInit
protected void doInit(Context ctx) throws ServiceException(Code)
Init the Mail service.
Parameters:
  ctx - the configuration of the Ear service.
throws:
  ServiceException - if the initialization failed.



doStart
protected void doStart() throws ServiceException(Code)
Start the Mail Service.
throws:
  ServiceException - if the initialization failed.



doStop
protected void doStop() throws ServiceException(Code)
Stop the Mail service.
throws:
  ServiceException - if the stop failed.



getCurrentNumberOfMailFactories
public Integer getCurrentNumberOfMailFactories()(Code)
Gets the total number of mail factories available in JOnAS Integer Total number of mail factories available in JOnAS



getCurrentNumberOfMimeMailFactories
public Integer getCurrentNumberOfMimeMailFactories()(Code)
Gets the integer Number of internet Integer Number of internet.MimePartDataSource mail factories available in JOnAS



getCurrentNumberOfSessionMailFactories
public Integer getCurrentNumberOfSessionMailFactories()(Code)
Gets the number of Session mail factories available in JOnAS Integer Number of Session mail factories available in JOnAS



getFactoryName
public String getFactoryName(String jndiName)(Code)
Gets the factory name given the jndi name. Null is returned if the given name is not binded.
Parameters:
  jndiName - the jndi name the factory name given the jndi name. Null is returned if the given name is not binded.



getMailFactoryPropertiesFile
public Properties getMailFactoryPropertiesFile(String configFile) throws Exception(Code)
Gets the mail factory configuration properties from a local file
Parameters:
  configFile - configuration to use mail factory configuration properties from a local file
throws:
  Exception - if it fails



getMailFactoryPropertiesFiles
public List getMailFactoryPropertiesFiles() throws Exception(Code)
MBean method: the list of properties files describing mail factories found in JONAS_BASE/conf



getMimePartMailFactoryPropertiesFiles
public List getMimePartMailFactoryPropertiesFiles() throws Exception(Code)
MBean method: the list of properties files describing mail factories found in JONAS_BASE/conf



getSessionMailFactoryPropertiesFiles
public List getSessionMailFactoryPropertiesFiles() throws Exception(Code)
MBean method: the list of properties files describing mail factories found in JONAS_BASE/conf



recreateJavaMailFactory
public void recreateJavaMailFactory(JavaMail factory) throws MailServiceException(Code)
This method is used when a Mail Factory configuration is modified via jonasAdmin. In this case, the updated JavaMail object (JavaMailSession or JavaMailMimePartDS object) must be rebound in JNDI
Parameters:
  factory - the factory
throws:
  MailServiceException - if the recreation ofthe factory failed.



renameJavaMailFactory
public void renameJavaMailFactory(String oldName, JavaMail factory) throws MailServiceException(Code)
This method is used when a particular Mail Factory configuration operation is done via jonasAdmin : when the JNDI name of this resource is modified. In this case, the initial JavaMail object (JavaMailSession or JavaMailMimePartDS object) must be unbound and the updated JavaMail object must be reloaded. Also, the Mail Service private data structures must be updated.
Parameters:
  oldName - old name of the factory
Parameters:
  factory - the new factory
throws:
  MailServiceException - if the rename of thethe factory failed.



unbindMailFactories
public void unbindMailFactories() throws MailServiceException(Code)
Unregister all the binding factories on the server and in JMX Server.
throws:
  MailServiceException - if the unregistration of the factoriesfailed.



unbindMailFactoryMBean
public void unbindMailFactoryMBean(String factoryName) throws MailServiceException(Code)
Unregister the factory with the given name.
Parameters:
  factoryName - the name of the factory to unbind.
throws:
  MailServiceException - if the unregistration of the factoryfailed.



Methods inherited from org.objectweb.jonas.service.AbsServiceImpl
abstract protected void doInit(Context ctx) throws ServiceException(Code)(Java Doc)
abstract protected void doStart() throws ServiceException(Code)(Java Doc)
abstract protected void doStop() throws ServiceException(Code)(Java Doc)
public String getDomainName()(Code)(Java Doc)
public String getJonasServerName()(Code)(Java Doc)
public String getName()(Code)(Java Doc)
public void init(Context ctx) throws ServiceException(Code)(Java Doc)
public boolean isStarted()(Code)(Java Doc)
public void setName(String name)(Code)(Java Doc)
public void start() throws ServiceException(Code)(Java Doc)
public void stop() throws ServiceException(Code)(Java Doc)

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