This repository has been archived on 2022-06-01. You can view files and clone it, but cannot push or open issues or pull requests.
LinkDitch/3-Domain/src/main/java/user/Username.java
qvalentin d091772002
All checks were successful
continuous-integration/drone/push Build is passing
Add string checks to VOs
2022-03-29 11:04:47 +02:00

13 lines
271 B
Java

package user;
import exeptions.IllegalValueObjectArgument;
public record Username(String username) {
public Username {
if (username.isBlank() || username.isEmpty()) {
throw new IllegalValueObjectArgument("A username must be a valid non-empty string.");
}
}
}