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 ContentPageLayoutAreaTransfer
022        extends BaseTransfer {
023
024    private ContentPageLayoutTransfer contentPageLayout;
025    private ContentPageAreaTypeTransfer contentPageAreaType;
026    private Boolean showDescriptionField;
027    private Integer sortOrder;
028    private String description;
029
030    /** Creates a new instance of ContentPageLayoutAreaTransfer */
031    public ContentPageLayoutAreaTransfer(ContentPageLayoutTransfer contentPageLayout, ContentPageAreaTypeTransfer contentPageAreaType,
032            Boolean showDescriptionField, Integer sortOrder, String description) {
033        this.contentPageLayout = contentPageLayout;
034        this.contentPageAreaType = contentPageAreaType;
035        this.showDescriptionField = showDescriptionField;
036        this.sortOrder = sortOrder;
037        this.description = description;
038    }
039
040    /**
041     * Returns the contentPageLayout.
042     * @return the contentPageLayout
043     */
044    public ContentPageLayoutTransfer getContentPageLayout() {
045        return contentPageLayout;
046    }
047
048    /**
049     * Sets the contentPageLayout.
050     * @param contentPageLayout the contentPageLayout to set
051     */
052    public void setContentPageLayout(ContentPageLayoutTransfer contentPageLayout) {
053        this.contentPageLayout = contentPageLayout;
054    }
055
056    /**
057     * Returns the contentPageAreaType.
058     * @return the contentPageAreaType
059     */
060    public ContentPageAreaTypeTransfer getContentPageAreaType() {
061        return contentPageAreaType;
062    }
063
064    /**
065     * Sets the contentPageAreaType.
066     * @param contentPageAreaType the contentPageAreaType to set
067     */
068    public void setContentPageAreaType(ContentPageAreaTypeTransfer contentPageAreaType) {
069        this.contentPageAreaType = contentPageAreaType;
070    }
071
072    /**
073     * Returns the showDescriptionField.
074     * @return the showDescriptionField
075     */
076    public Boolean getShowDescriptionField() {
077        return showDescriptionField;
078    }
079
080    /**
081     * Sets the showDescriptionField.
082     * @param showDescriptionField the showDescriptionField to set
083     */
084    public void setShowDescriptionField(Boolean showDescriptionField) {
085        this.showDescriptionField = showDescriptionField;
086    }
087
088    /**
089     * Returns the sortOrder.
090     * @return the sortOrder
091     */
092    public Integer getSortOrder() {
093        return sortOrder;
094    }
095
096    /**
097     * Sets the sortOrder.
098     * @param sortOrder the sortOrder to set
099     */
100    public void setSortOrder(Integer sortOrder) {
101        this.sortOrder = sortOrder;
102    }
103
104    /**
105     * Returns the description.
106     * @return the description
107     */
108    public String getDescription() {
109        return description;
110    }
111
112    /**
113     * Sets the description.
114     * @param description the description to set
115     */
116    public void setDescription(String description) {
117        this.description = description;
118    }
119
120}