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.message.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 MessageClobTransfer
024        extends BaseTransfer {
025    
026    private MessageTransfer message;
027    private LanguageTransfer language;
028    private MimeTypeTransfer mimeType;
029    private String clob;
030    
031    /** Creates a new instance of MessageClobTransfer */
032    public MessageClobTransfer(MessageTransfer message, LanguageTransfer language, MimeTypeTransfer mimeType, String clob) {
033        this.message = message;
034        this.language = language;
035        this.mimeType = mimeType;
036        this.clob = clob;
037    }
038    
039    public MessageTransfer getMessage() {
040        return message;
041    }
042    
043    public void setMessage(MessageTransfer message) {
044        this.message = message;
045    }
046    
047    public LanguageTransfer getLanguage() {
048        return language;
049    }
050    
051    public void setLanguage(LanguageTransfer language) {
052        this.language = language;
053    }
054    
055    public MimeTypeTransfer getMimeType() {
056        return mimeType;
057    }
058    
059    public void setMimeType(MimeTypeTransfer mimeType) {
060        this.mimeType = mimeType;
061    }
062    
063    public String getClob() {
064        return clob;
065    }
066    
067    public void setClob(String clob) {
068        this.clob = clob;
069    }
070    
071}