Project

General

Profile

« Previous | Next » 

Revision 59470

[Trunk | Admin Tools]: Merging branch 'use-UoaAdminToolsLibrary' into trunk for revisions 58365:59468

View differences:

Notifications.java
13 13
    Boolean notifyForNewManagers = true;
14 14
    Boolean notifyForNewSubscribers = true;
15 15
    String managerEmail;
16
    String communityPid;
16
    String portalPid;
17 17
    public Notifications(){
18 18

  
19 19
    }
20
    public Notifications(String managerEmail, String communityPid){
20
    public Notifications(String managerEmail, String portalPid){
21 21
        this();
22
        this.communityPid = communityPid;
22
        this.portalPid = portalPid;
23 23
        this.managerEmail = managerEmail;
24 24
    }
25 25
    public String getId() {
......
54 54
        this.managerEmail = managerEmail;
55 55
    }
56 56

  
57
    public String getCommunityPid() {
58
        return communityPid;
57
    public String getPortalPid() {
58
        return portalPid;
59 59
    }
60 60

  
61
    public void setCommunityPid(String communityPid) {
62
        this.communityPid = communityPid;
61
    public void setPortalPid(String portalPid) {
62
        this.portalPid = portalPid;
63 63
    }
64 64

  
65 65
    @Override
......
69 69
                ", notifyForNewManagers=" + notifyForNewManagers +
70 70
                ", notifyForNewSubscribers=" + notifyForNewSubscribers +
71 71
                ", managerEmail='" + managerEmail + '\'' +
72
                ", communityPid='" + communityPid + '\'' +
72
                ", portalPid='" + portalPid + '\'' +
73 73
                '}';
74 74
    }
75 75
}

Also available in: Unified diff