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.content.common.transfer; 018 019import com.echothree.model.control.content.common.transfer.ContentCategoryTransfer; 020import com.echothree.util.common.transfer.BaseTransfer; 021 022public class ContentCategoryResultTransfer 023 extends BaseTransfer { 024 025 private String contentCollectionName; 026 private String contentCatalogName; 027 private String contentCategoryName; 028 private ContentCategoryTransfer contentCategory; 029 030 /** Creates a new instance of ItemResultTransfer */ 031 public ContentCategoryResultTransfer(String contentCollectionName, String contentCatalogName, String contentCategoryName, 032 ContentCategoryTransfer contentCategory) { 033 this.contentCollectionName = contentCollectionName; 034 this.contentCatalogName = contentCatalogName; 035 this.contentCategoryName = contentCategoryName; 036 this.contentCategory = contentCategory; 037 } 038 039 /** 040 * Returns the contentCollectionName. 041 * @return the contentCollectionName 042 */ 043 public String getContentCollectionName() { 044 return contentCollectionName; 045 } 046 047 /** 048 * Sets the contentCollectionName. 049 * @param contentCollectionName the contentCollectionName to set 050 */ 051 public void setContentCollectionName(String contentCollectionName) { 052 this.contentCollectionName = contentCollectionName; 053 } 054 055 /** 056 * Returns the contentCatalogName. 057 * @return the contentCatalogName 058 */ 059 public String getContentCatalogName() { 060 return contentCatalogName; 061 } 062 063 /** 064 * Sets the contentCatalogName. 065 * @param contentCatalogName the contentCatalogName to set 066 */ 067 public void setContentCatalogName(String contentCatalogName) { 068 this.contentCatalogName = contentCatalogName; 069 } 070 071 /** 072 * Returns the contentCategoryName. 073 * @return the contentCategoryName 074 */ 075 public String getContentCategoryName() { 076 return contentCategoryName; 077 } 078 079 /** 080 * Sets the contentCategoryName. 081 * @param contentCategoryName the contentCategoryName to set 082 */ 083 public void setContentCategoryName(String contentCategoryName) { 084 this.contentCategoryName = contentCategoryName; 085 } 086 087 /** 088 * Returns the contentCategory. 089 * @return the contentCategory 090 */ 091 public ContentCategoryTransfer getContentCategory() { 092 return contentCategory; 093 } 094 095 /** 096 * Sets the contentCategory. 097 * @param contentCategory the contentCategory to set 098 */ 099 public void setContentCategory(ContentCategoryTransfer contentCategory) { 100 this.contentCategory = contentCategory; 101 } 102 103}