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.util.common.transfer.BaseTransfer; 020 021public class ContentWebAddressTransfer 022 extends BaseTransfer { 023 024 private String contentWebAddressName; 025 private ContentCollectionTransfer contentCollection; 026 private String description; 027 028 /** Creates a new instance of ContentWebAddressTransfer */ 029 public ContentWebAddressTransfer(String contentWebAddressName, ContentCollectionTransfer contentCollection, String description) { 030 this.contentWebAddressName = contentWebAddressName; 031 this.contentCollection = contentCollection; 032 this.description = description; 033 } 034 035 /** 036 * Returns the contentWebAddressName. 037 * @return the contentWebAddressName 038 */ 039 public String getContentWebAddressName() { 040 return contentWebAddressName; 041 } 042 043 /** 044 * Sets the contentWebAddressName. 045 * @param contentWebAddressName the contentWebAddressName to set 046 */ 047 public void setContentWebAddressName(String contentWebAddressName) { 048 this.contentWebAddressName = contentWebAddressName; 049 } 050 051 /** 052 * Returns the contentCollection. 053 * @return the contentCollection 054 */ 055 public ContentCollectionTransfer getContentCollection() { 056 return contentCollection; 057 } 058 059 /** 060 * Sets the contentCollection. 061 * @param contentCollection the contentCollection to set 062 */ 063 public void setContentCollection(ContentCollectionTransfer contentCollection) { 064 this.contentCollection = contentCollection; 065 } 066 067 /** 068 * Returns the description. 069 * @return the description 070 */ 071 public String getDescription() { 072 return description; 073 } 074 075 /** 076 * Sets the description. 077 * @param description the description to set 078 */ 079 public void setDescription(String description) { 080 this.description = description; 081 } 082 083}