Projekt

Obecné

Profil

« Předchozí | Další » 

Revize 2cdd3adc

Přidáno uživatelem Michal Linha před asi 4 roky(ů)

re #7881 loading and editing parameters in configuration in their locations, ability to set user name of parameter

Zobrazit rozdíly:

src/main/java/vldc/aswi/domain/Configuration.java
29 29
    private String tableName;
30 30

  
31 31
    /** Specific user, which created this configuration. */
32
    @ManyToOne(fetch= FetchType.LAZY)
32
    @ManyToOne(fetch= FetchType.EAGER)
33 33
    @JoinColumn(name = "uzivatel_id")
34 34
    private User user;
35 35

  
36 36
    /** Used assembly as template in configuration. */
37
    @ManyToOne(fetch= FetchType.LAZY)
37
    @ManyToOne(fetch= FetchType.EAGER)
38 38
    @JoinColumn(name = "sestava_id")
39 39
    private Assembly assembly;
40 40

  
......
52 52
        this.setName(name);
53 53
        this.setTableName(tableName);
54 54
    }
55

  
56
    @Override
57
    public String toString() {
58
        return "";
59
    }
55 60
}

Také k dispozici: Unified diff