Administrator
2021-11-09 5f50bd6ea5d5bdb7b8ea4d9e9a5851067b9aec1b
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;
    }
}