Skip to content

Instantly share code, notes, and snippets.

@pvardanega
Last active December 16, 2015 19:49
Show Gist options
  • Save pvardanega/5487620 to your computer and use it in GitHub Desktop.
Save pvardanega/5487620 to your computer and use it in GitHub Desktop.
Simple Grails domain class
package net.pvardanega
class User {
String fullname
String email
Double latitude
Double longitude
static constraints = {
fullname blank: false
email blank: false, email: true
}
public String toString() {
return fullname + " (" + email + ")";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment