Project

General

Profile

« Previous | Next » 

Revision 39638

empty strings as default to avoid ugly nulls here and there.

View differences:

modules/dnet-openaire-blacklist/trunk/src/main/java/eu/dnetlib/openaire/blacklist/BlacklistEntry.java
14 14
    /**
15 15
     * The user who reported the wrong link
16 16
     **/
17
    private String user;
17
    private String user = "";
18 18
    /**
19 19
     * A note regarding the reported 'wrong' relationship
20 20
     **/
21
    private String note;
21
    private String note = "";
22 22
    /**
23 23
     * The id of the ticket associated to this entry
24 24
     **/
25
    private String ticketId;
25
    private String ticketId = "";
26 26
    /**
27 27
     * Provenance of the relationship. 'iis' when the relationship is inferred
28 28
     **/
......
34 34
    /**
35 35
     * The inference module that generated the relationship. Blank if provenance is not 'iis'.
36 36
     **/
37
    private String iisModule;
37
    private String iisModule = "";
38 38

  
39 39
    /**
40 40
     * Status of the report

Also available in: Unified diff