Project

General

Profile

Download (1.2 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2021 EDIT
3
* European Distributed Institute of Taxonomy
4
* http://www.e-taxonomy.eu
5
*
6
* The contents of this file are subject to the Mozilla Public License Version 1.1
7
* See LICENSE.TXT at the top of this package for the full license terms.
8
*/
9
package eu.etaxonomy.cdm.persistence.dto;
10

    
11
import java.util.UUID;
12

    
13
import eu.etaxonomy.cdm.model.common.ICdmBase;
14

    
15
/**
16
 * @author k.luther
17
 * @since Jun 30, 2021
18
 */
19
public class TeamOrPersonUuidAndTitleCache<T extends ICdmBase> extends UuidAndTitleCache<T> {
20

    
21
    private static final long serialVersionUID = 3083330169541901724L;
22

    
23
    private String collectorTitleCache;
24

    
25
    /**
26
     * @param uuid
27
     * @param id
28
     * @param titleCache
29
     * @param abbrevTitleCache
30
     */
31
    public TeamOrPersonUuidAndTitleCache(UUID uuid, Integer id, String titleCache, String abbrevTitleCache, String collectorTitleCache) {
32
        super(uuid, id, titleCache, abbrevTitleCache);
33
        this.setCollectorTitleCache(collectorTitleCache);
34
    }
35

    
36
    public String getCollectorTitleCache() {
37
        return collectorTitleCache;
38
    }
39

    
40
    public void setCollectorTitleCache(String collectorTitleCache) {
41
        this.collectorTitleCache = collectorTitleCache;
42
    }
43

    
44

    
45

    
46

    
47
}
(22-22/28)