Skip to content

Instantly share code, notes, and snippets.

@mkubala
Last active December 25, 2015 06:29
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 mkubala/b8ebe279910ead6e39bb to your computer and use it in GitHub Desktop.
Save mkubala/b8ebe279910ead6e39bb to your computer and use it in GitHub Desktop.
public class UserObject {
private final String name;
private final int age;
public UserObject(final Config params) {
name = params.getString("name");
age = params.getInt("age");
}
// getters, hashCode, equals, etc.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment