Administrator
2021-11-06 73ece7bafeec74191a5919efb6839c508522f917
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;
    }
}