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 ContentCatalogResultTransfer
022        extends BaseTransfer {
023    
024    private String contentCollectionName;
025    private String contentCatalogName;
026    private ContentCatalogTransfer contentCatalog;
027    
028    /** Creates a new instance of ItemResultTransfer */
029    public ContentCatalogResultTransfer(String contentCollectionName, String contentCatalogName,
030            ContentCatalogTransfer contentCatalog) {
031        this.contentCollectionName = contentCollectionName;
032        this.contentCatalogName = contentCatalogName;
033        this.contentCatalog = contentCatalog;
034    }
035
036    /**
037     * Returns the contentCollectionName.
038     * @return the contentCollectionName
039     */
040    public String getContentCollectionName() {
041        return contentCollectionName;
042    }
043
044    /**
045     * Sets the contentCollectionName.
046     * @param contentCollectionName the contentCollectionName to set
047     */
048    public void setContentCollectionName(String contentCollectionName) {
049        this.contentCollectionName = contentCollectionName;
050    }
051
052    /**
053     * Returns the contentCatalogName.
054     * @return the contentCatalogName
055     */
056    public String getContentCatalogName() {
057        return contentCatalogName;
058    }
059
060    /**
061     * Sets the contentCatalogName.
062     * @param contentCatalogName the contentCatalogName to set
063     */
064    public void setContentCatalogName(String contentCatalogName) {
065        this.contentCatalogName = contentCatalogName;
066    }
067
068    /**
069     * Returns the contentCatalog.
070     * @return the contentCatalog
071     */
072    public ContentCatalogTransfer getContentCatalog() {
073        return contentCatalog;
074    }
075
076    /**
077     * Sets the contentCatalog.
078     * @param contentCatalog the contentCatalog to set
079     */
080    public void setContentCatalog(ContentCatalogTransfer contentCatalog) {
081        this.contentCatalog = contentCatalog;
082    }
083
084}