Subversion Repositories SmartDukaan

Rev

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

Rev 3487 Rev 3498
Line 15... Line 15...
15
 
15
 
16
    private static final long serialVersionUID = 1L;
16
    private static final long serialVersionUID = 1L;
17
 
17
 
18
    @PrimaryKey
18
    @PrimaryKey
19
    @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
19
    @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
20
    private long id;
20
    private String id;
21
 
21
 
22
    @Persistent
22
    @Persistent
23
    private Map<Long, Map<Long, Long>> comparisonStats;
23
    private Map<Long, Map<Long, Long>> comparisonStats;
24
 
24
 
25
	public void setId(long id) {
25
	public void setId(String id) {
26
		this.id = id;
26
		this.id = id;
27
	}
27
	}
28
 
28
 
29
	public long getId() {
29
	public String getId() {
30
		return id;
30
		return id;
31
	}
31
	}
32
	
32
	
33
	public void setComparisonStats(Map<Long, Map<Long, Long>> comparisonStats) {
33
	public void setComparisonStats(Map<Long, Map<Long, Long>> comparisonStats) {
34
		this.comparisonStats = comparisonStats;
34
		this.comparisonStats = comparisonStats;