Skip to content

Commit

Permalink
[refac] change Notnull annotation to NotBlank annotation (#106)
Browse files Browse the repository at this point in the history
  • Loading branch information
kgy1008 authored Jul 16, 2024
1 parent a4902cb commit db20484
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
package org.hankki.hankkiserver.api.auth.controller.request;

import jakarta.annotation.Nullable;
import jakarta.validation.constraints.NotNull;
import jakarta.validation.constraints.NotBlank;

public record UserLoginRequest(
@Nullable
String name,
@NotNull
@NotBlank
String platform
) {
}

0 comments on commit db20484

Please sign in to comment.