All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.rocketbase.commons.model.SimpleAppUserReference Maven / Gradle / Ivy

There is a newer version: 4.4.1
Show newest version
package io.rocketbase.commons.model;

import lombok.*;

/**
 * simplified AppUser without keyValues, password, audit etc...
* used to store a simple representation as a copy of AppUser in mongo or elsewhere */ @Getter @Builder @NoArgsConstructor @AllArgsConstructor @EqualsAndHashCode(of = "id") public class SimpleAppUserReference implements AppUserReference { private String id; private String username; private String firstName; private String lastName; private String email; private String avatar; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy