Projekt

Obecné

Profil

« Předchozí | Další » 

Revize b539ef29

Přidáno uživatelem Jakub Šmíd před asi 2 roky(ů)

Added path
- searching and highlighting text
- returning list of found catalog items

re #9490

Zobrazit rozdíly:

backend/src/main/java/cz/zcu/kiv/backendapi/catalog/CatalogItemDto.java
28 28
    private String name;
29 29

  
30 30
    /**
31
     * Certainty
31
     * Alternative names
32 32
     */
33
    private int certainty;
33
    private Set<String> alternativeNames = Collections.emptySet();
34 34

  
35 35
    /**
36
     * Longitude
36
     * Written forms
37 37
     */
38
    private double longitude;
38
    private Set<String> writtenForms = Collections.emptySet();
39 39

  
40 40
    /**
41
     * Latitude
41
     * Types
42 42
     */
43
    private double latitude;
43
    private Set<String> types = Collections.emptySet();
44 44

  
45 45
    /**
46
     * Bibliography
46
     * Countries
47 47
     */
48
    private Set<String> bibliography = Collections.emptySet();
48
    private Set<String> countries = Collections.emptySet();
49 49

  
50 50
    /**
51
     * Countries
51
     * Bibliography
52 52
     */
53
    private Set<String> countries = Collections.emptySet();
53
    private Set<String> bibliography = Collections.emptySet();
54 54

  
55 55
    /**
56
     * Written forms
56
     * Longitude
57 57
     */
58
    private Set<String> writtenForms = Collections.emptySet();
58
    private double longitude;
59 59

  
60 60
    /**
61
     * Alternative names
61
     * Latitude
62 62
     */
63
    private Set<String> alternativeNames = Collections.emptySet();
63
    private double latitude;
64 64

  
65 65
    /**
66
     * Types
66
     * Certainty
67 67
     */
68
    private Set<String> types = Collections.emptySet();
68
    private int certainty;
69 69

  
70 70
}

Také k dispozici: Unified diff