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