Skip to content

Instantly share code, notes, and snippets.

@antonarhipov
Last active August 29, 2015 14:08
Show Gist options
  • Save antonarhipov/3a84314bceabed67a03f to your computer and use it in GitHub Desktop.
Save antonarhipov/3a84314bceabed67a03f to your computer and use it in GitHub Desktop.
Morphia morphia = new Morphia();
Datastore ds = morphia.map(Repository.class).
createDatastore(new MongoClient("localhost", 27017), "mydb");
Organization org = new Organization("MegaOrg");
Repository repository = new Repository(org, "MegaRepository");
repository.owner = new GithubUser("Antonius");
repository.owner.fullName = "Anton";
repository.owner.repositories = Arrays.asList(repository);
ds.save(repository);
Result: http://cl.ly/image/3q3M0U2T0922
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment