blob: e1f630645b3697e983f86cb755d34b23eb549af8 [file] [log] [blame]
package com.android.car.debuggingrestrictioncontroller.ui.login;
/**
* 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;
}
}