Project

General

Profile

Download (685 Bytes) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2012 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

    
10
package eu.etaxonomy.cdm.hibernate.search;
11

    
12
import org.hibernate.search.bridge.StringBridge;
13

    
14
import eu.etaxonomy.cdm.model.agent.ORCID;
15

    
16
/**
17
 * @author a.mueller
18
 * @since Nov 08, 2019
19
 */
20
public class OrcidBridge implements StringBridge {
21

    
22
    @Override
23
    public String objectToString(Object object) {
24
        if(object != null) {
25
            return ((ORCID)object).toString();
26
        }
27
        return null;
28
    }
29

    
30
}
(14-14/20)