Project

General

Profile

« Previous | Next » 

Revision 51508

organize init script with methods, add connect and openaire fields in Page, filter pages by pid depending on connect and openaire field | order page results by name | update update script with methods

View differences:

Page.java
16 16
    private String name;
17 17
    private String type;
18 18
    private List<String> entities;
19
    private Boolean connect;
20
    private Boolean openaire;
19 21

  
20 22
    public Page() {
21 23
    }
......
55 57
    public List<String> getEntities() { return entities; }
56 58

  
57 59
    public void setEntities(List<String> entities) { this.entities = entities; }
60

  
61
    public Boolean getConnect() {
62
        return connect;
63
    }
64

  
65
    public void setConnect(Boolean connect) {
66
        this.connect = connect;
67
    }
68

  
69
    public Boolean getOpenaire() {
70
        return openaire;
71
    }
72

  
73
    public void setOpenaire(Boolean openaire) {
74
        this.openaire = openaire;
75
    }
58 76
}

Also available in: Unified diff