Subversion Repositories SmartDukaan

Rev

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

Rev 35079 Rev 35080
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
    }