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;
|
}
|
}
|