Administrator
2021-11-04 9054b529a2fe29a54d543698494bc702db4a696d
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;
    }
}