Last active
August 29, 2015 14:08
-
-
Save antonarhipov/3a84314bceabed67a03f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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