Interface UserLogin


public interface UserLogin
  • Method Details

    • id

      @NotNull @NotNull UUID id()
    • userId

      int userId()
    • loginTime

      @NotNull @NotNull LocalDateTime loginTime()
    • logoutTime

      @NotNull @NotNull LocalDateTime logoutTime()
    • inetAddress

      @NotNull @NotNull InetAddress inetAddress()
    • clientBrand

      @Nullable @Nullable String clientBrand()
    • protocolVersion

      int protocolVersion()
    • of

      @NotNull static @NotNull UserLogin of(@NotNull @NotNull UUID id, int userId, @NotNull @NotNull LocalDateTime loginTime, @NotNull @NotNull LocalDateTime logoutTime, @NotNull @NotNull InetAddress inetAddress, @Nullable @Nullable String clientBrand, int protocolVersion)