Skip to content

Instantly share code, notes, and snippets.

@abner-math
Created February 1, 2020 16:49
Show Gist options
  • Save abner-math/bb8a4c8e93d73cd308d2e1552c05ae78 to your computer and use it in GitHub Desktop.
Save abner-math/bb8a4c8e93d73cd308d2e1552c05ae78 to your computer and use it in GitHub Desktop.
Medium#1
public class System {
private Set<User> users;
public void setUsers(Set<User> users) {
this.users = users;
}
public Set<Usuario> getUsers() {
return this.users;
}
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment