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 5:51:04 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: AttachmentExtensionGroup.java,v 1.3 2005/07/26 03:04:48 rafaelsteil Exp $
048: */
049: public class AttachmentExtensionGroup {
050: public static final int DOWNLOAD_INLINE = 1;
051: public static final int DOWNLOAD_PHYSICAL = 2;
052:
053: private int id;
054: private String name;
055: private boolean allow;
056: private String uploadIcon;
057: private int downloadMode;
058:
059: /**
060: * @return Returns the downloadMode.
061: */
062: public int getDownloadMode() {
063: return this .downloadMode;
064: }
065:
066: /**
067: * @param downloadMode The downloadMode to set.
068: */
069: public void setDownloadMode(int downloadMode) {
070: this .downloadMode = downloadMode;
071: }
072:
073: /**
074: * @return Returns the allow.
075: */
076: public boolean isAllow() {
077: return this .allow;
078: }
079:
080: /**
081: * @param allow The allow to set.
082: */
083: public void setAllow(boolean allow) {
084: this .allow = allow;
085: }
086:
087: /**
088: * @return Returns the id.
089: */
090: public int getId() {
091: return this .id;
092: }
093:
094: /**
095: * @param id The id to set.
096: */
097: public void setId(int id) {
098: this .id = id;
099: }
100:
101: /**
102: * @return Returns the name.
103: */
104: public String getName() {
105: return this .name;
106: }
107:
108: /**
109: * @param name The name to set.
110: */
111: public void setName(String name) {
112: this .name = name;
113: }
114:
115: /**
116: * @return Returns the uploadIcon.
117: */
118: public String getUploadIcon() {
119: return this .uploadIcon;
120: }
121:
122: /**
123: * @param uploadIcon The uploadIcon to set.
124: */
125: public void setUploadIcon(String uploadIcon) {
126: this.uploadIcon = uploadIcon;
127: }
128: }
|