Skip to content

Instantly share code, notes, and snippets.

@dankilman
Created December 24, 2012 11:58
Show Gist options
  • Save dankilman/4368995 to your computer and use it in GitHub Desktop.
Save dankilman/4368995 to your computer and use it in GitHub Desktop.
Person and Address
// implementation omitted for brevity
@SpaceClass
public class Person {
@SpaceId
public Long getId() ...
public String getName() ...
public Address getAddress() ...
...
}
public class Address {
public String getStreetName() ...
public Long getStreetNumber() ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment