Skip to content

Instantly share code, notes, and snippets.

@smaugho
Last active April 26, 2017 23:08
Show Gist options
  • Save smaugho/4d7dff8cb31323b2bc9706ed3247e719 to your computer and use it in GitHub Desktop.
Save smaugho/4d7dff8cb31323b2bc9706ed3247e719 to your computer and use it in GitHub Desktop.
User Model
@ServerModel(
baseUrl = "http://www.example.com",
get = "user/me"
)
@LocalDBModel
public class User {
@NotEmpty String firstName;
@NotEmpty String lastName;
@Email String email;
String image;
Address_ address;
public String fullName() {
return firstName + " " + lastName;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment