Source Code Cross Referenced for JwmaMailIdentity.java in  » Web-Mail » Jwma » dtw » webmail » model » 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 » Web Mail » Jwma » dtw.webmail.model 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /***
002:         * jwma Java WebMail
003:         * Copyright (c) 2000-2003 jwma team
004:         *
005:         * jwma is free software; you can distribute and use this source
006:         * under the terms of the BSD-style license received along with
007:         * the distribution.
008:         ***/package dtw.webmail.model;
009:
010:        /**
011:         * An interface defining the contract for interaction with
012:         * the JwmaMailIdentity model.
013:         * <p>
014:         * A <tt>JwmaMailIdentity</tt> allows the view programmer
015:         * access to mail identity information.
016:         *
017:         * @author Dieter Wimberger
018:         * @version 0.9.7 07/02/2003
019:         */
020:        public interface JwmaMailIdentity {
021:
022:            /**
023:             * Returns the unique identifier of this <tt>JwmaMailIdentity</tt>.
024:             *
025:             * @return the unique identifier as <tt>String</tt>.
026:             */
027:            public String getUID();
028:
029:            /**
030:             * Returns a <tt>String</tt> representing the
031:             * name of this <tt>JwmaMailIdentity</tt>.
032:             *
033:             * @return the name of this <tt>JwmaMailIdentitya</tt>
034:             *         as <tt>String</tt>.
035:             */
036:            public String getName();
037:
038:            /**
039:             * Returns a <tt>String</tt> representing the
040:             * mail address of this <tt>JwmaMailIdentity</tt>.
041:             *
042:             * @return the mail address as <tt>String</tt>.
043:             */
044:            public String getFrom();
045:
046:            /**
047:             * Returns a <tt>String</tt> representing the
048:             * reply-to mail address of this
049:             * <tt>JwmaMailIdentity</tt>.
050:             *
051:             * @return the reply-to mail address as <tt>String</tt>.
052:             */
053:            public String getReplyTo();
054:
055:            /**
056:             * Returns a <tt>String</tt> representing the
057:             * signature of this <tt>JwmaMailIdentity</tt>.
058:             *
059:             * @return the standard signature as String.
060:             */
061:            public String getSignature();
062:
063:            /**
064:             * Returns the unique identifier of the contact related
065:             * with this <tt>MailIdentity</tt>.
066:             *
067:             * @return the UID of the related contact as <tt>String</tt>.
068:             */
069:            public String getRelatedContact();
070:
071:            /**
072:             * Tests if the signature should be appended
073:             * automatically for this <tt>JwmaMailIdentity</tt>.
074:             *
075:             * @return true if the signature should be appended
076:             *         automatically, false otherwise.
077:             */
078:            public boolean isAutoSigning();
079:
080:            /**
081:             * Returns a <tt>String</tt> representing the
082:             * note of this <tt>JwmaMailIdentity</tt>.
083:             *
084:             * @return the note as <tt>String</tt>.
085:             */
086:            public String getNote();
087:
088:            /**
089:             * Returns a <tt>String</tt> representing the
090:             * random append type of this <tt>JwmaMailIdentity</tt>.
091:             *
092:             * @return the standard signature as String.
093:             */
094:            public String getRandomAppendType();
095:
096:            /**
097:             * Tests if this <tt>JwmaMailIdentity</tt> want's a
098:             * random string to be appended to a message.
099:             *
100:             * @return true if a random string should be appended,
101:             *         false otherwise.
102:             */
103:            public boolean isRandomAppendAllowed();
104:
105:        }//Interface JwmaMailIdentity
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.