001: /*
002: * $Header: /cvsroot/mvnforum/mvnforum/src/com/mvnforum/db/GroupPermissionBean.java,v 1.8 2007/10/09 11:09:18 lexuanttkhtn Exp $
003: * $Author: lexuanttkhtn $
004: * $Revision: 1.8 $
005: * $Date: 2007/10/09 11:09:18 $
006: *
007: * ====================================================================
008: *
009: * Copyright (C) 2002-2007 by MyVietnam.net
010: *
011: * All copyright notices regarding mvnForum MUST remain
012: * intact in the scripts and in the outputted HTML.
013: * The "powered by" text/logo with a link back to
014: * http://www.mvnForum.com and http://www.MyVietnam.net in
015: * the footer of the pages MUST remain visible when the pages
016: * are viewed on the internet or intranet.
017: *
018: * This program is free software; you can redistribute it and/or modify
019: * it under the terms of the GNU General Public License as published by
020: * the Free Software Foundation; either version 2 of the License, or
021: * any later version.
022: *
023: * This program is distributed in the hope that it will be useful,
024: * but WITHOUT ANY WARRANTY; without even the implied warranty of
025: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
026: * GNU General Public License for more details.
027: *
028: * You should have received a copy of the GNU General Public License
029: * along with this program; if not, write to the Free Software
030: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
031: *
032: * Support can be obtained from support forums at:
033: * http://www.mvnForum.com/mvnforum/index
034: *
035: * Correspondence and Marketing Questions can be sent to:
036: * info at MyVietnam net
037: *
038: * @author: Minh Nguyen
039: * @author: Mai Nguyen
040: */
041: package com.mvnforum.db;
042:
043: import java.util.Collection;
044: import java.util.Iterator;
045:
046: /*
047: * Included columns: GroupID, Permission
048: * Excluded columns:
049: */
050: public class GroupPermissionBean {
051: private int groupID;
052: private int permission;
053:
054: public int getGroupID() {
055: return groupID;
056: }
057:
058: public void setGroupID(int groupID) {
059: this .groupID = groupID;
060: }
061:
062: public int getPermission() {
063: return permission;
064: }
065:
066: public void setPermission(int permission) {
067: this .permission = permission;
068: }
069:
070: public String getXML() {
071: StringBuffer xml = new StringBuffer(1024);
072: xml.append("<GroupPermissionSection>\n");
073: xml.append(" <Rows>\n");
074: xml.append(" <Row>\n");
075: xml.append(" <Column>\n");
076: xml.append(" <Name>GroupID</Name>\n");
077: xml.append(" <Value>").append(String.valueOf(groupID))
078: .append("</Value>\n");
079: xml.append(" </Column>\n");
080: xml.append(" <Column>\n");
081: xml.append(" <Name>Permission</Name>\n");
082: xml.append(" <Value>")
083: .append(String.valueOf(permission))
084: .append("</Value>\n");
085: xml.append(" </Column>\n");
086: xml.append(" </Row>\n");
087: xml.append(" </Rows>\n");
088: xml.append("</GroupPermissionSection>\n");
089: return xml.toString();
090: }
091:
092: public static String getXML(Collection objGroupPermissionBeans) {
093: StringBuffer xml = new StringBuffer(1024);
094: Iterator iterator = objGroupPermissionBeans.iterator();
095: xml.append("<GroupPermissionSection>\n");
096: xml.append(" <Rows>\n");
097: while (iterator.hasNext()) {
098: GroupPermissionBean objGroupPermissionBean = (GroupPermissionBean) iterator
099: .next();
100: xml.append(" <Row>\n");
101: xml.append(" <Column>\n");
102: xml.append(" <Name>GroupID</Name>\n");
103: xml.append(" <Value>").append(
104: String.valueOf(objGroupPermissionBean.groupID))
105: .append("</Value>\n");
106: xml.append(" </Column>\n");
107: xml.append(" <Column>\n");
108: xml.append(" <Name>Permission</Name>\n");
109: xml.append(" <Value>").append(
110: String.valueOf(objGroupPermissionBean.permission))
111: .append("</Value>\n");
112: xml.append(" </Column>\n");
113: xml.append(" </Row>\n");
114: }//while
115: xml.append(" </Rows>\n");
116: xml.append("</GroupPermissionSection>\n");
117: return xml.toString();
118: }
119: } //end of class GroupPermissionBean
|