alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

jforum example source code file (MailIntegration.java)

This example jforum source code file (MailIntegration.java) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - jforum tags/keywords

mailintegration, mailintegration, string, string, stringbuffer, stringbuffer

The jforum MailIntegration.java source code

/*
 * 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();
	}
}

Other jforum examples (source code examples)

Here is a short list of links related to this jforum MailIntegration.java source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.