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.training.common.transfer;
018
019import com.echothree.model.control.core.common.transfer.MimeTypeTransfer;
020import com.echothree.model.control.party.common.transfer.LanguageTransfer;
021import com.echothree.util.common.transfer.BaseTransfer;
022
023public class TrainingClassSectionTranslationTransfer
024        extends BaseTransfer {
025    
026    private TrainingClassSectionTransfer trainingClassSection;
027    private LanguageTransfer language;
028    private String description;
029    private MimeTypeTransfer overviewMimeType;
030    private String overview;
031    private MimeTypeTransfer introductionMimeType;
032    private String introduction;
033    
034    /** Creates a new instance of TrainingClassSectionTranslationTransfer */
035    public TrainingClassSectionTranslationTransfer(TrainingClassSectionTransfer trainingClassSection, LanguageTransfer language, String description,
036            MimeTypeTransfer overviewMimeType, String overview, MimeTypeTransfer introductionMimeType, String introduction) {
037        this.trainingClassSection = trainingClassSection;
038        this.language = language;
039        this.description = description;
040        this.overviewMimeType = overviewMimeType;
041        this.overview = overview;
042        this.introductionMimeType = introductionMimeType;
043        this.introduction = introduction;
044    }
045
046    public TrainingClassSectionTransfer getTrainingClassSection() {
047        return trainingClassSection;
048    }
049
050    public void setTrainingClassSection(TrainingClassSectionTransfer trainingClassSection) {
051        this.trainingClassSection = trainingClassSection;
052    }
053
054    public LanguageTransfer getLanguage() {
055        return language;
056    }
057
058    public void setLanguage(LanguageTransfer language) {
059        this.language = language;
060    }
061
062    public String getDescription() {
063        return description;
064    }
065
066    public void setDescription(String description) {
067        this.description = description;
068    }
069
070    public MimeTypeTransfer getOverviewMimeType() {
071        return overviewMimeType;
072    }
073
074    public void setOverviewMimeType(MimeTypeTransfer overviewMimeType) {
075        this.overviewMimeType = overviewMimeType;
076    }
077
078    public String getOverview() {
079        return overview;
080    }
081
082    public void setOverview(String overview) {
083        this.overview = overview;
084    }
085
086    public MimeTypeTransfer getIntroductionMimeType() {
087        return introductionMimeType;
088    }
089
090    public void setIntroductionMimeType(MimeTypeTransfer introductionMimeType) {
091        this.introductionMimeType = introductionMimeType;
092    }
093
094    public String getIntroduction() {
095        return introduction;
096    }
097
098    public void setIntroduction(String introduction) {
099        this.introduction = introduction;
100    }
101
102}