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.chain.common.transfer;
018
019import com.echothree.util.common.transfer.BaseTransfer;
020
021public class ChainActionTransfer
022        extends BaseTransfer {
023
024    private ChainActionSetTransfer chainActionSet;
025    private String chainActionName;
026    private ChainActionTypeTransfer chainActionType;
027    private Integer sortOrder;
028    private String description;
029
030    private ChainActionLetterTransfer chainActionLetter;
031    private ChainActionSurveyTransfer chainActionSurvey;
032    private ChainActionChainActionSetTransfer chainActionChainActionSet;
033    
034    /** Creates a new instance of ChainActionTransfer */
035    public ChainActionTransfer(ChainActionSetTransfer chainActionSet, String chainActionName, ChainActionTypeTransfer chainActionType, Integer sortOrder, String description) {
036        this.chainActionSet = chainActionSet;
037        this.chainActionName = chainActionName;
038        this.chainActionType = chainActionType;
039        this.sortOrder = sortOrder;
040        this.description = description;
041    }
042
043    public ChainActionSetTransfer getChainActionSet() {
044        return chainActionSet;
045    }
046
047    public void setChainActionSet(ChainActionSetTransfer chainActionSet) {
048        this.chainActionSet = chainActionSet;
049    }
050
051    public String getChainActionName() {
052        return chainActionName;
053    }
054
055    public void setChainActionName(String chainActionName) {
056        this.chainActionName = chainActionName;
057    }
058
059    public ChainActionTypeTransfer getChainActionType() {
060        return chainActionType;
061    }
062
063    public void setChainActionType(ChainActionTypeTransfer chainActionType) {
064        this.chainActionType = chainActionType;
065    }
066
067    public Integer getSortOrder() {
068        return sortOrder;
069    }
070
071    public void setSortOrder(Integer sortOrder) {
072        this.sortOrder = sortOrder;
073    }
074
075    public String getDescription() {
076        return description;
077    }
078
079    public void setDescription(String description) {
080        this.description = description;
081    }
082
083    public ChainActionLetterTransfer getChainActionLetter() {
084        return chainActionLetter;
085    }
086
087    public void setChainActionLetter(ChainActionLetterTransfer chainActionLetter) {
088        this.chainActionLetter = chainActionLetter;
089    }
090
091    public ChainActionSurveyTransfer getChainActionSurvey() {
092        return chainActionSurvey;
093    }
094
095    public void setChainActionSurvey(ChainActionSurveyTransfer chainActionSurvey) {
096        this.chainActionSurvey = chainActionSurvey;
097    }
098
099    public ChainActionChainActionSetTransfer getChainActionChainActionSet() {
100        return chainActionChainActionSet;
101    }
102
103    public void setChainActionChainActionSet(ChainActionChainActionSetTransfer chainActionChainActionSet) {
104        this.chainActionChainActionSet = chainActionChainActionSet;
105    }
106
107}