Project

General

Profile

Download (1.09 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.agent.AgentBase;
14

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

    
21
    private static final long serialVersionUID = 3083330169541901724L;
22

    
23
    private String collectorTitleCache;
24

    
25
    public TeamOrPersonUuidAndTitleCache(UUID uuid, Integer id, String titleCache, String abbrevTitleCache, String collectorTitleCache) {
26
        super(uuid, id, titleCache, abbrevTitleCache);
27
        this.setCollectorTitleCache(collectorTitleCache);
28
    }
29

    
30
    public String getCollectorTitleCache() {
31
        return collectorTitleCache;
32
    }
33

    
34
    public void setCollectorTitleCache(String collectorTitleCache) {
35
        this.collectorTitleCache = collectorTitleCache;
36
    }
37
}
(23-23/29)