Project

General

Profile

Download (662 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.common.DOI;
15

    
16
/**
17
 * @author a.mueller
18
 * @date Sep 05, 2013
19
 *
20
 */
21
public class DoiBridge implements StringBridge {
22

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

    
30
}
(7-7/18)