001// -------------------------------------------------------------------------------- 002// Copyright 2002-2024 Echo Three, LLC 003// 004// Licensed under the Apache License, Version 2.0 (the "License"); 005// you may not use this file except in compliance with the License. 006// You may obtain a copy of the License at 007// 008// http://www.apache.org/licenses/LICENSE-2.0 009// 010// Unless required by applicable law or agreed to in writing, software 011// distributed under the License is distributed on an "AS IS" BASIS, 012// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013// See the License for the specific language governing permissions and 014// limitations under the License. 015// -------------------------------------------------------------------------------- 016 017package com.echothree.model.control.forum.common.transfer; 018 019import com.echothree.model.control.icon.common.transfer.IconTransfer; 020import com.echothree.util.common.transfer.BaseTransfer; 021import com.echothree.util.common.transfer.ListWrapper; 022 023public class ForumGroupTransfer 024 extends BaseTransfer { 025 026 private String forumGroupName; 027 private IconTransfer icon; 028 private Integer sortOrder; 029 private String description; 030 031 private ListWrapper<ForumTransfer> forums; 032 033 /** Creates a new instance of ForumGroupTransfer */ 034 public ForumGroupTransfer(String forumGroupName, IconTransfer icon, Integer sortOrder, String description) { 035 this.forumGroupName = forumGroupName; 036 this.icon = icon; 037 this.sortOrder = sortOrder; 038 this.description = description; 039 } 040 041 public String getForumGroupName() { 042 return forumGroupName; 043 } 044 045 public void setForumGroupName(String forumGroupName) { 046 this.forumGroupName = forumGroupName; 047 } 048 049 public IconTransfer getIcon() { 050 return icon; 051 } 052 053 public void setIcon(IconTransfer icon) { 054 this.icon = icon; 055 } 056 057 public Integer getSortOrder() { 058 return sortOrder; 059 } 060 061 public void setSortOrder(Integer sortOrder) { 062 this.sortOrder = sortOrder; 063 } 064 065 public String getDescription() { 066 return description; 067 } 068 069 public void setDescription(String description) { 070 this.description = description; 071 } 072 073 public ListWrapper<ForumTransfer> getForums() { 074 return forums; 075 } 076 077 public void setForums(ListWrapper<ForumTransfer> forums) { 078 this.forums = forums; 079 } 080 081}