Java Doc for MailSetupForm.java in  » Groupware » ivatagroupware » com » ivata » groupware » business » mail » struts » 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 » Groupware » ivatagroupware » com.ivata.groupware.business.mail.struts 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


com.ivata.groupware.admin.struts.HibernateSetupForm
   com.ivata.groupware.business.mail.struts.MailSetupForm

MailSetupForm
public class MailSetupForm extends HibernateSetupForm (Code)
Contains all of the values you need to setup a basic ivata groupware installation.
since:
   ivata groupware 0.11 (2005-03-27)
author:
   Colin MacLeod
author:
   colin.macleod@ivata.com
version:
   $Revision: 1.7 $



Constructor Summary
public  MailSetupForm(Settings settingsParam)
     Construct the mail setup form.

Method Summary
protected  voidclear()
     Prepare the form.
public  StringgetMailDomain()
    

Get the domain name of the email address for users of this system.

public  ListgetMailDomains()
     On Windows, this returns a list of all email domains as strings.
public  StringgetMailHostIMAP()
     Name or IP address of the host used to receive IMAP messages.
public  StringgetMailHostSMTP()
     Name or IP address of the host used to send mail messages.
public  StringgetScriptsPath()
     On UNIX-style systems, this is the path to scripts which are used to add/remove users from the mail system.
public  booleanisWindows()
     Returns true if this is a Microsoft Windows installation.
public  voidreset(ActionMapping mappingParam, HttpServletRequest requestParam)
    
public  voidsetMailDomain(String mailDomainParam)
    
public  voidsetMailDomains(List mailDomainsParam)
    
public  voidsetMailHostIMAP(String mailHostIMAPParam)
    
public  voidsetMailHostSMTP(String mailHostSMTPParam)
    
public  voidsetScriptsPath(String mailServerScriptsPathParam)
    
public  voidsetWindows(boolean windowsParam)
    
public  ValidationErrorsvalidate(HttpServletRequest requestParam, HttpSession sessionParam)
     This method has been implemented to check that the mail server fields are either all blank, or all preasent.
Parameters:
  requestParam - current request we are processing.
Parameters:
  sessionParam - current HTTP session.


Constructor Detail
MailSetupForm
public MailSetupForm(Settings settingsParam)(Code)
Construct the mail setup form.
Parameters:
  settingsParam -




Method Detail
clear
protected void clear()(Code)
Prepare the form.
See Also:   com.ivata.mask.web.struts.DialogForm.clear



getMailDomain
public String getMailDomain()(Code)

Get the domain name of the email address for users of this system. The domain name is that part which comes afer the 'at symbol' (@) in their email addresses.

On Windows, this must match the domain name set up in hMailServer.

Returns the mail domain.



getMailDomains
public List getMailDomains()(Code)
On Windows, this returns a list of all email domains as strings. On other platforms, it just returns null. Returns the mail domains for hMailServer onWindows



getMailHostIMAP
public String getMailHostIMAP()(Code)
Name or IP address of the host used to receive IMAP messages. Returns the mail host used for IMAP.



getMailHostSMTP
public String getMailHostSMTP()(Code)
Name or IP address of the host used to send mail messages. Returns the mail host used for SMTP.



getScriptsPath
public String getScriptsPath()(Code)
On UNIX-style systems, this is the path to scripts which are used to add/remove users from the mail system. (The implementation for Windows uses COM to communicate with hMailServer directly. Returns the mail server scripts path.



isWindows
public boolean isWindows()(Code)
Returns true if this is a Microsoft Windows installation. Returns true if this is a MicrosoftWindows installation.



reset
public void reset(ActionMapping mappingParam, HttpServletRequest requestParam)(Code)

Parameters:
  mappingParam -
Parameters:
  requestParam -



setMailDomain
public void setMailDomain(String mailDomainParam)(Code)
Refer to MailSetupForm.getMailDomain .
Parameters:
  mailDomainParam - Refer to MailSetupForm.getMailDomain.



setMailDomains
public void setMailDomains(List mailDomainsParam)(Code)
Refer to MailSetupForm.getMailDomains .
Parameters:
  mailDomainsParam - Refer to MailSetupForm.getMailDomains.



setMailHostIMAP
public void setMailHostIMAP(String mailHostIMAPParam)(Code)
Refer to MailSetupForm.getMailHostIMAP .
Parameters:
  mailHostIMAPParam - Refer to MailSetupForm.getMailHostIMAP.



setMailHostSMTP
public void setMailHostSMTP(String mailHostSMTPParam)(Code)
Refer to MailSetupForm.getMailHostSMTP .
Parameters:
  mailHostSMTPParam - Refer to MailSetupForm.getMailHostSMTP.



setScriptsPath
public void setScriptsPath(String mailServerScriptsPathParam)(Code)
Refer to MailSetupForm.getMailServerScriptsPath .
Parameters:
  mailServerScriptsPathParam - Refer toMailSetupForm.getMailServerScriptsPath.



setWindows
public void setWindows(boolean windowsParam)(Code)
Refer to MailSetupForm.isWindows .
Parameters:
  windowsParam - Refer to MailSetupForm.isWindows.



validate
public ValidationErrors validate(HttpServletRequest requestParam, HttpSession sessionParam)(Code)
This method has been implemented to check that the mail server fields are either all blank, or all preasent.
Parameters:
  requestParam - current request we are processing.
Parameters:
  sessionParam - current HTTP session. a validation errors collection containing any errors whichwould prevent the form from being successfully processed.



Methods inherited from com.ivata.groupware.admin.struts.HibernateSetupForm
protected void clear()(Code)(Java Doc)
public String getDatabaseDialect()(Code)(Java Doc)
public List getDatabaseDialects()(Code)(Java Doc)
public String getDatabaseDriver()(Code)(Java Doc)
public List getDatabaseDrivers()(Code)(Java Doc)
public String getDatabasePassword()(Code)(Java Doc)
public List getDatabaseTypes()(Code)(Java Doc)
public String getDatabaseURL()(Code)(Java Doc)
public List getDatabaseURLs()(Code)(Java Doc)
public String getDatabaseUserName()(Code)(Java Doc)
public boolean isCreateDatabaseAutomatically()(Code)(Java Doc)
public void reset(ActionMapping mappingParam, HttpServletRequest requestParam)(Code)(Java Doc)
public void setCreateDatabaseAutomatically(boolean createDatabaseAutomaticallyParam)(Code)(Java Doc)
public void setDatabaseDialect(String databaseDialectParam)(Code)(Java Doc)
public void setDatabaseDialects(List databaseDialectsParam)(Code)(Java Doc)
public void setDatabaseDriver(String databaseDriverParam)(Code)(Java Doc)
public void setDatabaseDrivers(List databaseDriversParam)(Code)(Java Doc)
public void setDatabasePassword(String databasePasswordParam)(Code)(Java Doc)
public void setDatabaseTypes(List databaseTypesParam)(Code)(Java Doc)
public void setDatabaseURL(String databaseURLParam)(Code)(Java Doc)
public void setDatabaseURLs(List databaseURLsParam)(Code)(Java Doc)
public void setDatabaseUserName(String databaseUserNameParam)(Code)(Java Doc)
public ValidationErrors validate(HttpServletRequest requestParam, HttpSession sessionParam)(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.