001// --------------------------------------------------------------------------------
002// Copyright 2002-2025 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 EntityTimeDefaultTransfer
022        extends BaseTransfer {
023
024    private EntityAttributeTransfer entityAttribute;
025    private String timeAttribute;
026    private Long unformattedTimeAttribute;
027
028    /** Creates a new instance of EntityTimeAttributeTransfer */
029    public EntityTimeDefaultTransfer(EntityAttributeTransfer entityAttribute, String timeAttribute,
030            Long unformattedTimeAttribute) {
031        this.entityAttribute = entityAttribute;
032        this.timeAttribute = timeAttribute;
033        this.unformattedTimeAttribute = unformattedTimeAttribute;
034    }
035
036    /**
037     * Returns the entityAttribute.
038     * @return the entityAttribute
039     */
040    public EntityAttributeTransfer getEntityAttribute() {
041        return entityAttribute;
042    }
043
044    /**
045     * Sets the entityAttribute.
046     * @param entityAttribute the entityAttribute to set
047     */
048    public void setEntityAttribute(EntityAttributeTransfer entityAttribute) {
049        this.entityAttribute = entityAttribute;
050    }
051
052    /**
053     * Returns the timeAttribute.
054     * @return the timeAttribute
055     */
056    public String getTimeAttribute() {
057        return timeAttribute;
058    }
059
060    /**
061     * Sets the timeAttribute.
062     * @param timeAttribute the timeAttribute to set
063     */
064    public void setTimeAttribute(String timeAttribute) {
065        this.timeAttribute = timeAttribute;
066    }
067
068    /**
069     * Returns the unformattedTimeAttribute.
070     * @return the unformattedTimeAttribute
071     */
072    public Long getUnformattedTimeAttribute() {
073        return unformattedTimeAttribute;
074    }
075
076    /**
077     * Sets the unformattedTimeAttribute.
078     * @param unformattedTimeAttribute the unformattedTimeAttribute to set
079     */
080    public void setUnformattedTimeAttribute(Long unformattedTimeAttribute) {
081        this.unformattedTimeAttribute = unformattedTimeAttribute;
082    }
083    
084}