Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
MailIntegration.java
Package: jforum-2.1.8-src.zip [view]
Upload User: gdxydsw
Upload Date: 2019-01-29
Package Size: 16721k
Code Size: 2k
Category:
Java Develop
Development Platform:
Java
- /*
- * Created on 21/08/2006 21:23:29
- */
- package net.jforum.entities;
- /**
- * @author Rafael Steil
- * @version $Id: MailIntegration.java,v 1.4 2006/10/10 01:59:55 rafaelsteil Exp $
- */
- public class MailIntegration
- {
- private int forumId;
- private int popPort;
- private boolean ssl;
- private String forumEmail;
- private String popHost;
- private String popUsername;
- private String popPassword;
- /**
- * @return the forumId
- */
- public int getForumId()
- {
- return this.forumId;
- }
- /**
- * @return the popHost
- */
- public String getPopHost()
- {
- return this.popHost;
- }
- /**
- * @return the popPassword
- */
- public String getPopPassword()
- {
- return this.popPassword;
- }
- /**
- * @return the popPort
- */
- public int getPopPort()
- {
- return this.popPort;
- }
- /**
- * @return the popUsername
- */
- public String getPopUsername()
- {
- return this.popUsername;
- }
- /**
- * @param forumId the forumId to set
- */
- public void setForumId(int forumId)
- {
- this.forumId = forumId;
- }
- /**
- * @param popHost the popHost to set
- */
- public void setPopHost(String popHost)
- {
- this.popHost = popHost;
- }
- /**
- * @param popPassword the popPassword to set
- */
- public void setPopPassword(String popPassword)
- {
- this.popPassword = popPassword;
- }
- /**
- * @param popPort the popPort to set
- */
- public void setPopPort(int popPort)
- {
- this.popPort = popPort;
- }
- /**
- * @param popUsername the popUsername to set
- */
- public void setPopUsername(String popUsername)
- {
- this.popUsername = popUsername;
- }
- /**
- * @return the forumEmail
- */
- public String getForumEmail()
- {
- return this.forumEmail;
- }
- /**
- * @param forumEmail the forumEmail to set
- */
- public void setForumEmail(String forumEmail)
- {
- this.forumEmail = forumEmail;
- }
- public void setSSL(boolean ssl)
- {
- this.ssl = ssl;
- }
- public boolean isSSL()
- {
- return this.ssl;
- }
- /**
- * @see java.lang.Object#toString()
- */
- public String toString()
- {
- return new StringBuffer()
- .append('[')
- .append("email=").append(this.forumEmail)
- .append(", host=").append(this.popHost)
- .append(", port=").append(this.popPort)
- .append(", ssl=").append(this.ssl)
- .append(']')
- .toString();
- }
- }