Administrator
2021-11-06 52e2971a30c37fabb79ad5198516ce7afcf21696
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.duqing.missions.ui.login.view;
 
/**
 * Class exposing authenticated user details to the UI.
 */
class LoggedInUserView {
    private String displayName;
    //... other data fields that may be accessible to the UI
 
    LoggedInUserView(String displayName) {
        this.displayName = displayName;
    }
 
    String getDisplayName() {
        return displayName;
    }
}