Subversion Repositories SmartDukaan

Rev

Rev 35080 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 35080 Rev 35082
Line 90... Line 90...
90
 
90
 
91
    @Convert(converter = LocalDateTimeAttributeConverter.class)
91
    @Convert(converter = LocalDateTimeAttributeConverter.class)
92
    @Column(name = "updated_timestamp")
92
    @Column(name = "updated_timestamp")
93
    private LocalDateTime updatedTimestamp;
93
    private LocalDateTime updatedTimestamp;
94
 
94
 
95
   // @OneToMany(mappedBy = "locationTracking", cascade = CascadeType.ALL, orphanRemoval = true, fetch = FetchType.LAZY)
95
   /*// @OneToMany(mappedBy = "locationTracking", cascade = CascadeType.ALL, orphanRemoval = true, fetch = FetchType.LAZY)
96
    private List<LocationTrackingPath> journeyPath = new ArrayList<>();
96
    private List<LocationTrackingPath> journeyPath = new ArrayList<>();
97
 
97
 
98
    public List<LocationTrackingPath> getJourneyPath() {
98
    public List<LocationTrackingPath> getJourneyPath() {
99
        return journeyPath;
99
        return journeyPath;
100
    }
100
    }
101
 
101
 
102
    public void setJourneyPath(List<LocationTrackingPath> journeyPath) {
102
    public void setJourneyPath(List<LocationTrackingPath> journeyPath) {
103
        this.journeyPath = journeyPath;
103
        this.journeyPath = journeyPath;
104
    }
104
    }*/
105
 
105
 
106
    public int getId() {
106
    public int getId() {
107
        return id;
107
        return id;
108
    }
108
    }
109
 
109