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.track.common.transfer;
018
019import com.echothree.model.control.user.common.transfer.UserVisitTransfer;
020import com.echothree.util.common.transfer.BaseTransfer;
021
022public class UserVisitTrackTransfer
023        extends BaseTransfer {
024    
025    private UserVisitTransfer userVisit;
026    private Integer userVisitTrackSequence;
027    private Long unformattedTime;
028    private String time;
029    private TrackTransfer track;
030    
031    /** Creates a new instance of UserVisitTrackTransfer */
032    public UserVisitTrackTransfer(UserVisitTransfer userVisit, Integer userVisitTrackSequence, Long unformattedTime, String time, TrackTransfer track) {
033        this.userVisit = userVisit;
034        this.userVisitTrackSequence = userVisitTrackSequence;
035        this.unformattedTime = unformattedTime;
036        this.time = time;
037        this.track = track;
038    }
039
040    /**
041     * Returns the userVisit.
042     * @return the userVisit
043     */
044    public UserVisitTransfer getUserVisit() {
045        return userVisit;
046    }
047
048    /**
049     * Sets the userVisit.
050     * @param userVisit the userVisit to set
051     */
052    public void setUserVisit(UserVisitTransfer userVisit) {
053        this.userVisit = userVisit;
054    }
055
056    /**
057     * Returns the userVisitTrackSequence.
058     * @return the userVisitTrackSequence
059     */
060    public Integer getUserVisitTrackSequence() {
061        return userVisitTrackSequence;
062    }
063
064    /**
065     * Sets the userVisitTrackSequence.
066     * @param userVisitTrackSequence the userVisitTrackSequence to set
067     */
068    public void setUserVisitTrackSequence(Integer userVisitTrackSequence) {
069        this.userVisitTrackSequence = userVisitTrackSequence;
070    }
071
072    /**
073     * Returns the unformattedTime.
074     * @return the unformattedTime
075     */
076    public Long getUnformattedTime() {
077        return unformattedTime;
078    }
079
080    /**
081     * Sets the unformattedTime.
082     * @param unformattedTime the unformattedTime to set
083     */
084    public void setUnformattedTime(Long unformattedTime) {
085        this.unformattedTime = unformattedTime;
086    }
087
088    /**
089     * Returns the time.
090     * @return the time
091     */
092    public String getTime() {
093        return time;
094    }
095
096    /**
097     * Sets the time.
098     * @param time the time to set
099     */
100    public void setTime(String time) {
101        this.time = time;
102    }
103
104    /**
105     * Returns the track.
106     * @return the track
107     */
108    public TrackTransfer getTrack() {
109        return track;
110    }
111
112    /**
113     * Sets the track.
114     * @param track the track to set
115     */
116    public void setTrack(TrackTransfer track) {
117        this.track = track;
118    }
119
120}