Skip to content

Instantly share code, notes, and snippets.

@OlgaMaciaszek
Created July 26, 2022 14:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save OlgaMaciaszek/0083ac7fa45f577c6262fc0185b5ff5d to your computer and use it in GitHub Desktop.
Save OlgaMaciaszek/0083ac7fa45f577c6262fc0185b5ff5d to your computer and use it in GitHub Desktop.
package io.github.olgamaciaszek.cardservice.user;
import java.util.UUID;
public class User {
public UUID uuid;
public Status status;
public User() {
}
public void setUuid(UUID uuid) {
this.uuid = uuid;
}
public void setStatus(Status status) {
this.status = status;
}
public UUID getUuid() {
return uuid;
}
public Status getStatus() {
return status;
}
public enum Status {
NEW,
OK,
FRAUD;
Status() {
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment