001: /*
002: * Copyright (c) 2003, 2004 Rafael Steil
003: * All rights reserved.
004: *
005: * Redistribution and use in source and binary forms,
006: * with or without modification, are permitted provided
007: * that the following conditions are met:
008: *
009: * 1) Redistributions of source code must retain the above
010: * copyright notice, this list of conditions and the
011: * following disclaimer.
012: * 2) Redistributions in binary form must reproduce the
013: * above copyright notice, this list of conditions and
014: * the following disclaimer in the documentation and/or
015: * other materials provided with the distribution.
016: * 3) Neither the name of "Rafael Steil" nor
017: * the names of its contributors may be used to endorse
018: * or promote products derived from this software without
019: * specific prior written permission.
020: *
021: * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT
022: * HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
023: * EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
024: * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
025: * MERCHANTABILITY AND FITNESS FOR A PARTICULAR
026: * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
027: * THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
028: * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
029: * EXEMPLARY, OR CONSEQUENTIAL DAMAGES
030: * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
031: * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
032: * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
033: * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
034: * IN CONTRACT, STRICT LIABILITY, OR TORT
035: * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
036: * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
037: * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE
038: *
039: * Created on Jan 17, 2005 4:22:27 PM
040: * The JForum Project
041: * http://www.jforum.net
042: */
043: package net.jforum.entities;
044:
045: /**
046: * @author Rafael Steil
047: * @version $Id: QuotaLimit.java,v 1.5 2005/07/26 03:04:51 rafaelsteil Exp $
048: */
049: public class QuotaLimit {
050: public static final int KB = 1;
051: public static final int MB = 2;
052:
053: private int id;
054: private String description;
055: private int size;
056: private int type;
057:
058: /**
059: * Checks if the size passed as argument
060: * is greater than the quota's limit.
061: *
062: * @param size The size to check
063: * @return <code>true</code> if the size is greater than
064: * quota's limit.
065: */
066: public boolean exceedsQuota(long size) {
067: if (this .type == QuotaLimit.KB) {
068: return (size > this .size * 1024);
069: }
070:
071: return (size > this .size * 1024 * 1024);
072: }
073:
074: public int getSizeInBytes() {
075: if (this .type == QuotaLimit.KB) {
076: return (this .size * 1024);
077: }
078:
079: return (this .size * 1024 * 1024);
080: }
081:
082: /**
083: * @return Returns the description.
084: */
085: public String getDescription() {
086: return this .description;
087: }
088:
089: /**
090: * @param description The description to set.
091: */
092: public void setDescription(String description) {
093: this .description = description;
094: }
095:
096: /**
097: * @return Returns the id.
098: */
099: public int getId() {
100: return this .id;
101: }
102:
103: /**
104: * @param id The id to set.
105: */
106: public void setId(int id) {
107: this .id = id;
108: }
109:
110: /**
111: * @return Returns the size.
112: */
113: public int getSize() {
114: return this .size;
115: }
116:
117: /**
118: * @param size The size to set.
119: */
120: public void setSize(int size) {
121: this .size = size;
122: }
123:
124: /**
125: * @return Returns the type.
126: */
127: public int getType() {
128: return this .type;
129: }
130:
131: /**
132: * @param type The type to set.
133: */
134: public void setType(int type) {
135: this.type = type;
136: }
137: }
|