Class AppUser

java.lang.Object
com.example.demo.appuser.AppUser
All Implemented Interfaces:
Serializable, org.springframework.security.core.userdetails.UserDetails

@Entity public class AppUser extends Object implements org.springframework.security.core.userdetails.UserDetails
Represents a user entity in the application, implementing Spring Security's UserDetails interface.

This class maps to the 'app_user' table in the database and provides the core user information required for authentication and authorization.

See Also: