Skip to content

Instantly share code, notes, and snippets.

@enesakar
Created April 3, 2012 15:17
Show Gist options
  • Select an option

  • Save enesakar/2292854 to your computer and use it in GitHub Desktop.

Select an option

Save enesakar/2292854 to your computer and use it in GitHub Desktop.
class Customer implements Serializable {
String name
Integer age
static constraints = {
}
String toString() {
"name:${name}, age:${age}"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment