|
jforum example source code file (Category.java)
The jforum Category.java source code
/*
* Copyright (c) JForum Team
* All rights reserved.
*
* Redistribution and use in source and binary forms,
* with or without modification, are permitted provided
* that the following conditions are met:
*
* 1) Redistributions of source code must retain the above
* copyright notice, this list of conditions and the
* following disclaimer.
* 2) Redistributions in binary form must reproduce the
* above copyright notice, this list of conditions and
* the following disclaimer in the documentation and/or
* other materials provided with the distribution.
* 3) Neither the name of "Rafael Steil" nor
* the names of its contributors may be used to endorse
* or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT
* HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
* BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
* THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
* OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
* IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE
*
* This file creating date: Feb 17, 2003 / 10:47:29 PM
* The JForum Project
* http://www.jforum.net
*/
package net.jforum.entities;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.TreeSet;
import net.jforum.SessionFacade;
import net.jforum.exceptions.ForumOrderChangedException;
import net.jforum.repository.SecurityRepository;
import net.jforum.security.PermissionControl;
import net.jforum.security.SecurityConstants;
import net.jforum.util.ForumOrderComparator;
/**
* Represents a category in the System.
* Each category holds a reference to all its forums, which
* can be retrieved by calling either @link #getForums(),
* @link #getForum(int) and related methods.
*
* <br />
*
* This class also controls the access to its forums, so a call
* to @link #getForums() will only return the forums accessible
* to the user who make the call tho the method.
*
* @author Rafael Steil
* @version $Id: Category.java,v 1.22 2007/08/18 07:03:20 andowson Exp $
*/
public class Category implements Serializable
{
private int id;
private int order;
private boolean moderated;
private String name;
private Map forumsIdMap = new HashMap();
private Set forums = new TreeSet(new ForumOrderComparator());
public Category() {}
public Category(int id) {
this.id = id;
}
public Category(String name, int id) {
this.name = name;
this.id = id;
}
public Category(Category c) {
this.name = c.getName();
this.id = c.getId();
this.order = c.getOrder();
this.moderated = c.isModerated();
for (Iterator iter = c.getForums().iterator(); iter.hasNext(); ) {
this.addForum(new Forum((Forum)iter.next()));
}
}
public void setModerated(boolean status)
{
this.moderated = status;
}
public boolean isModerated()
{
return this.moderated;
}
/**
* @return int
*/
public int getId() {
return this.id;
}
/**
* @return String
*/
public String getName() {
return this.name;
}
/**
* @return int
*/
public int getOrder() {
return this.order;
}
/**
* Sets the id.
* @param id The id to set
*/
public void setId(int id) {
this.id = id;
}
/**
* Sets the name.
* @param name The name to set
*/
public void setName(String name) {
this.name = name;
}
/**
* Sets the order.
* @param order The order to set
*/
public void setOrder(int order) {
this.order = order;
}
/**
* Adds a forum to this category
*
* @param forum Forum
*/
public void addForum(Forum forum) {
this.forumsIdMap.put(new Integer(forum.getId()), forum);
this.forums.add(forum);
}
/**
* Reloads a forum.
* The forum should already be in the cache and <b>SHOULD NOT
* have its order changed. If the forum's order was changed,
* then you <b>MUST CALL @link #changeForumOrder(Forum) BEFORE
* calling this method.
*
* @param forum The forum to reload its information
* @see #changeForumOrder(Forum)
*/
public void reloadForum(Forum forum) {
Forum currentForum = this.getForum(forum.getId());
if (forum.getOrder() != currentForum.getOrder()) {
throw new ForumOrderChangedException("Forum #" + forum.getId() + " cannot be reloaded, since its "
+ "display order was changed. You must call Category#changeForumOrder(Forum)"
+ "first");
}
Set tmpSet = new TreeSet(new ForumOrderComparator());
tmpSet.addAll(this.forums);
tmpSet.remove(currentForum);
tmpSet.add(forum);
this.forumsIdMap.put(new Integer(forum.getId()), forum);
this.forums = tmpSet;
}
/**
* Changes a forum's display order.
* This method changes the position of the
* forum in the current display order of the
* forum instance passed as argument, if applicable.
*
* @param forum The forum to change
*/
public void changeForumOrder(Forum forum)
{
Forum current = this.getForum(forum.getId());
Forum currentAtOrder = this.findByOrder(forum.getOrder());
Set tmpSet = new TreeSet(new ForumOrderComparator());
tmpSet.addAll(this.forums);
// Remove the forum in the current order
// where the changed forum will need to be
if (currentAtOrder != null) {
tmpSet.remove(currentAtOrder);
}
tmpSet.add(forum);
this.forumsIdMap.put(new Integer(forum.getId()), forum);
// Remove the forum in the position occupied
// by the changed forum before its modification,
// so then we can add the another forum into
// its position
if (currentAtOrder != null) {
tmpSet.remove(current);
currentAtOrder.setOrder(current.getOrder());
tmpSet.add(currentAtOrder);
this.forumsIdMap.put(new Integer(currentAtOrder.getId()), currentAtOrder);
}
this.forums = tmpSet;
}
private Forum findByOrder(int order)
{
for (Iterator iter = this.forums.iterator(); iter.hasNext(); ) {
Forum f = (Forum)iter.next();
if (f.getOrder() == order) {
return f;
}
}
return null;
}
/**
* Removes a forum from the list.
* @param forumId int
*/
public void removeForum(int forumId) {
this.forums.remove(this.getForum(forumId));
this.forumsIdMap.remove(new Integer(forumId));
}
/**
* Gets a forum.
*
* @param userId The user's id who is trying to see the forum
* @param forumId The id of the forum to get
* @return The <code>Forum instance if found, or
Other jforum examples (source code examples)Here is a short list of links related to this jforum Category.java source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 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.