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.core.common.transfer;
018
019import com.echothree.util.common.transfer.BaseTransfer;
020
021public class EntityTimeTransfer
022        extends BaseTransfer {
023    
024    private Long unformattedCreatedTime;
025    private String createdTime;
026    private Long unformattedModifiedTime;
027    private String modifiedTime;
028    private Long unformattedDeletedTime;
029    private String deletedTime;
030    
031    /** Creates a new instance of EntityTimeTransfer */
032    public EntityTimeTransfer(Long unformattedCreatedTime, String createdTime, Long unformattedModifiedTime, String modifiedTime,
033            Long unformattedDeletedTime, String deletedTime) {
034        this.unformattedCreatedTime = unformattedCreatedTime;
035        this.createdTime = createdTime;
036        this.unformattedModifiedTime = unformattedModifiedTime;
037        this.modifiedTime = modifiedTime;
038        this.unformattedDeletedTime = unformattedDeletedTime;
039        this.deletedTime = deletedTime;
040    }
041    
042    public Long getUnformattedCreatedTime() {
043        return unformattedCreatedTime;
044    }
045    
046    public void setUnformattedCreatedTime(Long unformattedCreatedTime) {
047        this.unformattedCreatedTime = unformattedCreatedTime;
048    }
049    
050    public String getCreatedTime() {
051        return createdTime;
052    }
053    
054    public void setCreatedTime(String createdTime) {
055        this.createdTime = createdTime;
056    }
057    
058    public Long getUnformattedModifiedTime() {
059        return unformattedModifiedTime;
060    }
061    
062    public void setUnformattedModifiedTime(Long unformattedModifiedTime) {
063        this.unformattedModifiedTime = unformattedModifiedTime;
064    }
065    
066    public String getModifiedTime() {
067        return modifiedTime;
068    }
069    
070    public void setModifiedTime(String modifiedTime) {
071        this.modifiedTime = modifiedTime;
072    }
073    
074    public Long getUnformattedDeletedTime() {
075        return unformattedDeletedTime;
076    }
077    
078    public void setUnformattedDeletedTime(Long unformattedDeletedTime) {
079        this.unformattedDeletedTime = unformattedDeletedTime;
080    }
081    
082    public String getDeletedTime() {
083        return deletedTime;
084    }
085    
086    public void setDeletedTime(String deletedTime) {
087        this.deletedTime = deletedTime;
088    }
089    
090}