├── .gitignore ├── LICENSE ├── hello-worlds ├── .classpath ├── .gitignore ├── .project ├── .settings │ ├── org.eclipse.jdt.core.prefs │ └── org.maven.ide.eclipse.prefs ├── README.md ├── build.gradle ├── build.xml ├── hello-worlds.iml ├── hello-worlds.ipr ├── hello-worlds.iws ├── pom.xml ├── settings │ ├── install-ivy.xml │ ├── ivy.xml │ ├── ivysettings.xml │ └── path.xml └── src │ ├── main │ ├── java │ │ └── org │ │ │ └── springframework │ │ │ └── data │ │ │ └── neo4j │ │ │ └── examples │ │ │ └── hellograph │ │ │ ├── App.java │ │ │ ├── MyWorldRepository.java │ │ │ ├── RelationshipTypes.java │ │ │ ├── World.java │ │ │ ├── WorldCounter.java │ │ │ ├── WorldRepository.java │ │ │ └── WorldRepositoryImpl.java │ └── resources │ │ ├── log4j.properties │ │ └── spring │ │ └── helloWorldContext.xml │ └── test │ └── java │ └── org │ └── springframework │ └── data │ └── neo4j │ └── examples │ └── hellograph │ ├── WorldCounterTest.java │ ├── WorldRepositoryTest.java │ └── WorldTest.java ├── imdb ├── .gitignore ├── README.md ├── doc │ └── images │ │ └── IMDB1.png ├── pom.xml └── src │ ├── main │ ├── assembly │ │ └── imdb-src.xml │ ├── java │ │ └── org │ │ │ └── neo4j │ │ │ └── examples │ │ │ └── imdb │ │ │ ├── domain │ │ │ ├── Actor.java │ │ │ ├── ActorRepository.java │ │ │ ├── ImdbSearchEngine.java │ │ │ ├── ImdbSearchEngineImpl.java │ │ │ ├── ImdbService.java │ │ │ ├── ImdbServiceImpl.java │ │ │ ├── Lookup.java │ │ │ ├── LookupRepository.java │ │ │ ├── Movie.java │ │ │ ├── MovieRepository.java │ │ │ ├── RelTypes.java │ │ │ └── Role.java │ │ │ ├── parser │ │ │ ├── ActorData.java │ │ │ ├── ImdbParser.java │ │ │ ├── ImdbReader.java │ │ │ ├── ImdbReaderImpl.java │ │ │ ├── MovieData.java │ │ │ └── RoleData.java │ │ │ └── web │ │ │ ├── ActorFindControllerDelegate.java │ │ │ ├── ActorForm.java │ │ │ ├── ActorInfo.java │ │ │ ├── FindController.java │ │ │ ├── FindControllerDelegate.java │ │ │ ├── ImdbSetupControllerDelegate.java │ │ │ ├── MovieFindControllerDelegate.java │ │ │ ├── MovieForm.java │ │ │ ├── MovieInfo.java │ │ │ ├── SetupController.java │ │ │ ├── SetupControllerDelegate.java │ │ │ └── SetupForm.java │ ├── model │ │ ├── imdb.domain.impl.ucls │ │ ├── imdb.domain.interface.simple.ucls │ │ ├── imdb.domain.interface.ucls │ │ ├── imdb.domain.service.search.ucls │ │ ├── imdb.domain.service.ucls │ │ ├── imdb.packages.ucls │ │ ├── imdb.parser.data.ucls │ │ ├── imdb.parser.ucls │ │ ├── imdb.util.ucls │ │ ├── imdb.web.find.ucls │ │ └── imdb.web.setup.ucls │ ├── resources │ │ └── data │ │ │ ├── actors.list.gz │ │ │ ├── actresses.list.gz │ │ │ └── movies.list.gz │ └── webapp │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── WEB-INF │ │ ├── imdb-app-servlet.xml │ │ ├── tld │ │ │ └── spring-form.tld │ │ └── web.xml │ │ ├── actor.png │ │ ├── bg.png │ │ ├── favicon.ico │ │ ├── gradient.png │ │ ├── index.jsp │ │ ├── jsp │ │ ├── actor-list.jsp │ │ ├── actor.jsp │ │ ├── head.jsp │ │ ├── include.jsp │ │ ├── menu.jsp │ │ ├── movie-list.jsp │ │ ├── movie.jsp │ │ ├── setup-message.jsp │ │ └── setup.jsp │ │ ├── menu.png │ │ ├── movie.png │ │ ├── setup.png │ │ └── style.css │ ├── site │ ├── apt │ │ └── index.apt │ └── site.xml │ └── test │ └── resources │ └── icons │ ├── ACTS_IN.INCOMING.png │ ├── ACTS_IN.OUTGOING.png │ ├── IMDB.OUTGOING.png │ ├── PART_OF_NAME.OUTGOING.png │ └── PART_OF_TITLE.OUTGOING.png ├── myrestaurants-original ├── .classpath ├── .gitignore ├── .project ├── .settings │ ├── .jsdtscope │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.wst.common.component │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── org.eclipse.wst.jsdt.ui.superType.container │ ├── org.eclipse.wst.jsdt.ui.superType.name │ ├── org.eclipse.wst.validation.prefs │ └── org.maven.ide.eclipse.prefs ├── .springBeans ├── pom.xml └── src │ └── main │ ├── java │ └── com │ │ └── springone │ │ └── myrestaurants │ │ ├── dao │ │ ├── RestaurantDao.java │ │ └── UserAccountDao.java │ │ ├── domain │ │ ├── Restaurant.java │ │ └── UserAccount.java │ │ └── web │ │ ├── BaseApplicationController.java │ │ ├── RestaurantController.java │ │ └── SignUpController.java │ ├── resources │ ├── META-INF │ │ ├── persistence.xml │ │ └── spring │ │ │ ├── applicationContext-security.xml │ │ │ ├── applicationContext.xml │ │ │ └── database.properties │ ├── log4j.properties │ ├── restaurants-sample-data.sql │ └── schema.sql │ └── webapp │ ├── META-INF │ └── MANIFEST.MF │ ├── WEB-INF │ ├── classes │ │ ├── alt.properties │ │ └── standard.properties │ ├── i18n │ │ ├── application.properties │ │ └── messages.properties │ ├── layouts │ │ ├── default.jspx │ │ └── layouts.xml │ ├── spring │ │ └── webmvc-config.xml │ ├── tags │ │ ├── form │ │ │ ├── create.tagx │ │ │ ├── dependency.tagx │ │ │ ├── fields │ │ │ │ ├── checkbox.tagx │ │ │ │ ├── column.tagx │ │ │ │ ├── datetime.tagx │ │ │ │ ├── display.tagx │ │ │ │ ├── editor.tagx │ │ │ │ ├── input.tagx │ │ │ │ ├── reference.tagx │ │ │ │ ├── select.tagx │ │ │ │ ├── simple.tagx │ │ │ │ ├── table.tagx │ │ │ │ └── textarea.tagx │ │ │ ├── find.tagx │ │ │ ├── list.tagx │ │ │ ├── show.tagx │ │ │ └── update.tagx │ │ ├── menu │ │ │ ├── category.tagx │ │ │ ├── item.tagx │ │ │ └── menu.tagx │ │ └── util │ │ │ ├── language.tagx │ │ │ ├── load-scripts.tagx │ │ │ ├── pagination.tagx │ │ │ ├── panel.tagx │ │ │ ├── placeholder.tagx │ │ │ └── theme.tagx │ ├── views │ │ ├── dataAccessFailure.jspx │ │ ├── footer.jspx │ │ ├── header.jspx │ │ ├── index-template.jspx │ │ ├── index.jspx │ │ ├── login.jspx │ │ ├── menu.jspx │ │ ├── resourceNotFound.jspx │ │ ├── restaurants │ │ │ ├── create.jspx │ │ │ ├── list.jspx │ │ │ ├── show.jspx │ │ │ ├── update.jspx │ │ │ └── views.xml │ │ ├── uncaughtException.jspx │ │ ├── useraccounts │ │ │ ├── create.jspx │ │ │ ├── list.jspx │ │ │ ├── show.jspx │ │ │ ├── update.jspx │ │ │ └── views.xml │ │ └── views.xml │ └── web.xml │ ├── images │ ├── add.png │ ├── banner-graphic.png │ ├── create.png │ ├── delete.png │ ├── en.png │ ├── fav-del.png │ ├── fav-new.png │ ├── favicon.ico │ ├── list.png │ ├── resultset_first.png │ ├── resultset_last.png │ ├── resultset_next.png │ ├── resultset_previous.png │ ├── show.png │ ├── spring-logo.png │ ├── springsource-logo.png │ └── update.png │ └── styles │ ├── alt.css │ └── standard.css ├── myrestaurants-social ├── .classpath ├── .gitignore ├── .project ├── .settings │ ├── .jsdtscope │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.jst.jsp.core.prefs │ ├── org.eclipse.wst.common.component │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── org.eclipse.wst.jsdt.ui.superType.container │ ├── org.eclipse.wst.jsdt.ui.superType.name │ ├── org.eclipse.wst.validation.prefs │ ├── org.eclipse.wst.ws.service.policy.prefs │ └── org.maven.ide.eclipse.prefs ├── .springBeans ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── springone │ │ │ └── myrestaurants │ │ │ ├── data │ │ │ ├── RestaurantRepository.java │ │ │ └── UserAccountRepository.java │ │ │ ├── domain │ │ │ ├── RatedRestaurant.java │ │ │ ├── Recommendation.java │ │ │ ├── Restaurant.java │ │ │ ├── TopRatedRestaurantFinder.java │ │ │ ├── TopRatedRestaurantTraverser.java │ │ │ └── UserAccount.java │ │ │ └── web │ │ │ ├── BaseApplicationController.java │ │ │ ├── FriendController.java │ │ │ ├── FriendFormBean.java │ │ │ ├── RatedRestaurantBean.java │ │ │ ├── RecommendationController.java │ │ │ ├── RecommendationFormBean.java │ │ │ ├── RestaurantController.java │ │ │ ├── SignUpController.java │ │ │ └── TopNController.java │ ├── resources │ │ ├── META-INF │ │ │ ├── persistence.xml │ │ │ └── spring │ │ │ │ ├── applicationContext-security.xml │ │ │ │ ├── applicationContext.xml │ │ │ │ └── database.properties │ │ ├── log4j.properties │ │ ├── restaurants-sample-data.sql │ │ └── schema.sql │ └── webapp │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── WEB-INF │ │ ├── classes │ │ │ ├── alt.properties │ │ │ └── standard.properties │ │ ├── i18n │ │ │ ├── application.properties │ │ │ └── messages.properties │ │ ├── layouts │ │ │ ├── default.jspx │ │ │ └── layouts.xml │ │ ├── spring │ │ │ └── webmvc-config.xml │ │ ├── tags │ │ │ ├── form │ │ │ │ ├── create.tagx │ │ │ │ ├── dependency.tagx │ │ │ │ ├── fields │ │ │ │ │ ├── checkbox.tagx │ │ │ │ │ ├── column.tagx │ │ │ │ │ ├── datetime.tagx │ │ │ │ │ ├── display.tagx │ │ │ │ │ ├── editor.tagx │ │ │ │ │ ├── input.tagx │ │ │ │ │ ├── reference.tagx │ │ │ │ │ ├── select.tagx │ │ │ │ │ ├── simple.tagx │ │ │ │ │ ├── table.tagx │ │ │ │ │ └── textarea.tagx │ │ │ │ ├── find.tagx │ │ │ │ ├── list.tagx │ │ │ │ ├── show.tagx │ │ │ │ └── update.tagx │ │ │ ├── menu │ │ │ │ ├── category.tagx │ │ │ │ ├── item.tagx │ │ │ │ └── menu.tagx │ │ │ └── util │ │ │ │ ├── language.tagx │ │ │ │ ├── load-scripts.tagx │ │ │ │ ├── pagination.tagx │ │ │ │ ├── panel.tagx │ │ │ │ ├── placeholder.tagx │ │ │ │ └── theme.tagx │ │ ├── views │ │ │ ├── dataAccessFailure.jspx │ │ │ ├── footer.jspx │ │ │ ├── friends │ │ │ │ ├── create.jspx │ │ │ │ ├── list.jspx │ │ │ │ ├── show.jspx │ │ │ │ ├── update.jspx │ │ │ │ └── views.xml │ │ │ ├── header.jspx │ │ │ ├── index-template.jspx │ │ │ ├── index.jspx │ │ │ ├── login.jspx │ │ │ ├── menu.jspx │ │ │ ├── recommendations │ │ │ │ ├── create.jspx │ │ │ │ ├── list.jspx │ │ │ │ ├── show.jspx │ │ │ │ ├── update.jspx │ │ │ │ └── views.xml │ │ │ ├── resourceNotFound.jspx │ │ │ ├── restaurants │ │ │ │ ├── create.jspx │ │ │ │ ├── list.jspx │ │ │ │ ├── show.jspx │ │ │ │ ├── update.jspx │ │ │ │ └── views.xml │ │ │ ├── topn │ │ │ │ ├── list.jspx │ │ │ │ └── views.xml │ │ │ ├── uncaughtException.jspx │ │ │ ├── useraccounts │ │ │ │ ├── create.jspx │ │ │ │ ├── list.jspx │ │ │ │ ├── show.jspx │ │ │ │ ├── update.jspx │ │ │ │ └── views.xml │ │ │ └── views.xml │ │ └── web.xml │ │ ├── images │ │ ├── Thumbs.db │ │ ├── add.png │ │ ├── banner-graphic.png │ │ ├── create.png │ │ ├── delete.png │ │ ├── en.png │ │ ├── fav-del.png │ │ ├── fav-new.png │ │ ├── favicon.ico │ │ ├── list.png │ │ ├── recommend.gif │ │ ├── resultset_first.png │ │ ├── resultset_last.png │ │ ├── resultset_next.png │ │ ├── resultset_previous.png │ │ ├── show.png │ │ ├── spring-logo.png │ │ ├── springsource-logo.png │ │ ├── thumbsup.png │ │ └── update.png │ │ └── styles │ │ ├── alt.css │ │ └── standard.css │ └── test │ ├── java │ └── com │ │ ├── springdeveloper │ │ └── data │ │ │ └── neo │ │ │ └── PrintNeo4j.java │ │ └── springone │ │ └── myrestaurants │ │ ├── data │ │ ├── AbstractTestWithUserAccount.java │ │ ├── RestaurantRepositoryTest.java │ │ ├── UserAccountRelationshipsTest.java │ │ └── UserAccountRepositoryTest.java │ │ └── domain │ │ └── TopRatedRestaurantFinderTest.java │ └── resources │ └── com │ └── springone │ └── myrestaurants │ ├── data │ ├── DataStore-context.xml │ ├── RestaurantRepositoryTest-context.xml │ ├── UserAccountRelationshipsTest-context.xml │ └── UserAccountRepositoryTest-context.xml │ └── domain │ ├── DataStore-context.xml │ └── TopRatedRestaurantFinderTest-context.xml └── readme.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/LICENSE -------------------------------------------------------------------------------- /hello-worlds/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/hello-worlds/.classpath -------------------------------------------------------------------------------- /hello-worlds/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/hello-worlds/.gitignore -------------------------------------------------------------------------------- /hello-worlds/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/hello-worlds/.project -------------------------------------------------------------------------------- /hello-worlds/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/hello-worlds/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /hello-worlds/.settings/org.maven.ide.eclipse.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/hello-worlds/.settings/org.maven.ide.eclipse.prefs -------------------------------------------------------------------------------- /hello-worlds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/hello-worlds/README.md -------------------------------------------------------------------------------- /hello-worlds/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/hello-worlds/build.gradle -------------------------------------------------------------------------------- /hello-worlds/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/hello-worlds/build.xml -------------------------------------------------------------------------------- /hello-worlds/hello-worlds.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/hello-worlds/hello-worlds.iml -------------------------------------------------------------------------------- /hello-worlds/hello-worlds.ipr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/hello-worlds/hello-worlds.ipr -------------------------------------------------------------------------------- /hello-worlds/hello-worlds.iws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/hello-worlds/hello-worlds.iws -------------------------------------------------------------------------------- /hello-worlds/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/hello-worlds/pom.xml -------------------------------------------------------------------------------- /hello-worlds/settings/install-ivy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/hello-worlds/settings/install-ivy.xml -------------------------------------------------------------------------------- /hello-worlds/settings/ivy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/hello-worlds/settings/ivy.xml -------------------------------------------------------------------------------- /hello-worlds/settings/ivysettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/hello-worlds/settings/ivysettings.xml -------------------------------------------------------------------------------- /hello-worlds/settings/path.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/hello-worlds/settings/path.xml -------------------------------------------------------------------------------- /hello-worlds/src/main/java/org/springframework/data/neo4j/examples/hellograph/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/hello-worlds/src/main/java/org/springframework/data/neo4j/examples/hellograph/App.java -------------------------------------------------------------------------------- /hello-worlds/src/main/java/org/springframework/data/neo4j/examples/hellograph/MyWorldRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/hello-worlds/src/main/java/org/springframework/data/neo4j/examples/hellograph/MyWorldRepository.java -------------------------------------------------------------------------------- /hello-worlds/src/main/java/org/springframework/data/neo4j/examples/hellograph/RelationshipTypes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/hello-worlds/src/main/java/org/springframework/data/neo4j/examples/hellograph/RelationshipTypes.java -------------------------------------------------------------------------------- /hello-worlds/src/main/java/org/springframework/data/neo4j/examples/hellograph/World.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/hello-worlds/src/main/java/org/springframework/data/neo4j/examples/hellograph/World.java -------------------------------------------------------------------------------- /hello-worlds/src/main/java/org/springframework/data/neo4j/examples/hellograph/WorldCounter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/hello-worlds/src/main/java/org/springframework/data/neo4j/examples/hellograph/WorldCounter.java -------------------------------------------------------------------------------- /hello-worlds/src/main/java/org/springframework/data/neo4j/examples/hellograph/WorldRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/hello-worlds/src/main/java/org/springframework/data/neo4j/examples/hellograph/WorldRepository.java -------------------------------------------------------------------------------- /hello-worlds/src/main/java/org/springframework/data/neo4j/examples/hellograph/WorldRepositoryImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/hello-worlds/src/main/java/org/springframework/data/neo4j/examples/hellograph/WorldRepositoryImpl.java -------------------------------------------------------------------------------- /hello-worlds/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/hello-worlds/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /hello-worlds/src/main/resources/spring/helloWorldContext.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/hello-worlds/src/main/resources/spring/helloWorldContext.xml -------------------------------------------------------------------------------- /hello-worlds/src/test/java/org/springframework/data/neo4j/examples/hellograph/WorldCounterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/hello-worlds/src/test/java/org/springframework/data/neo4j/examples/hellograph/WorldCounterTest.java -------------------------------------------------------------------------------- /hello-worlds/src/test/java/org/springframework/data/neo4j/examples/hellograph/WorldRepositoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/hello-worlds/src/test/java/org/springframework/data/neo4j/examples/hellograph/WorldRepositoryTest.java -------------------------------------------------------------------------------- /hello-worlds/src/test/java/org/springframework/data/neo4j/examples/hellograph/WorldTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/hello-worlds/src/test/java/org/springframework/data/neo4j/examples/hellograph/WorldTest.java -------------------------------------------------------------------------------- /imdb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/.gitignore -------------------------------------------------------------------------------- /imdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/README.md -------------------------------------------------------------------------------- /imdb/doc/images/IMDB1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/doc/images/IMDB1.png -------------------------------------------------------------------------------- /imdb/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/pom.xml -------------------------------------------------------------------------------- /imdb/src/main/assembly/imdb-src.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/assembly/imdb-src.xml -------------------------------------------------------------------------------- /imdb/src/main/java/org/neo4j/examples/imdb/domain/Actor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/java/org/neo4j/examples/imdb/domain/Actor.java -------------------------------------------------------------------------------- /imdb/src/main/java/org/neo4j/examples/imdb/domain/ActorRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/java/org/neo4j/examples/imdb/domain/ActorRepository.java -------------------------------------------------------------------------------- /imdb/src/main/java/org/neo4j/examples/imdb/domain/ImdbSearchEngine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/java/org/neo4j/examples/imdb/domain/ImdbSearchEngine.java -------------------------------------------------------------------------------- /imdb/src/main/java/org/neo4j/examples/imdb/domain/ImdbSearchEngineImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/java/org/neo4j/examples/imdb/domain/ImdbSearchEngineImpl.java -------------------------------------------------------------------------------- /imdb/src/main/java/org/neo4j/examples/imdb/domain/ImdbService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/java/org/neo4j/examples/imdb/domain/ImdbService.java -------------------------------------------------------------------------------- /imdb/src/main/java/org/neo4j/examples/imdb/domain/ImdbServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/java/org/neo4j/examples/imdb/domain/ImdbServiceImpl.java -------------------------------------------------------------------------------- /imdb/src/main/java/org/neo4j/examples/imdb/domain/Lookup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/java/org/neo4j/examples/imdb/domain/Lookup.java -------------------------------------------------------------------------------- /imdb/src/main/java/org/neo4j/examples/imdb/domain/LookupRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/java/org/neo4j/examples/imdb/domain/LookupRepository.java -------------------------------------------------------------------------------- /imdb/src/main/java/org/neo4j/examples/imdb/domain/Movie.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/java/org/neo4j/examples/imdb/domain/Movie.java -------------------------------------------------------------------------------- /imdb/src/main/java/org/neo4j/examples/imdb/domain/MovieRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/java/org/neo4j/examples/imdb/domain/MovieRepository.java -------------------------------------------------------------------------------- /imdb/src/main/java/org/neo4j/examples/imdb/domain/RelTypes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/java/org/neo4j/examples/imdb/domain/RelTypes.java -------------------------------------------------------------------------------- /imdb/src/main/java/org/neo4j/examples/imdb/domain/Role.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/java/org/neo4j/examples/imdb/domain/Role.java -------------------------------------------------------------------------------- /imdb/src/main/java/org/neo4j/examples/imdb/parser/ActorData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/java/org/neo4j/examples/imdb/parser/ActorData.java -------------------------------------------------------------------------------- /imdb/src/main/java/org/neo4j/examples/imdb/parser/ImdbParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/java/org/neo4j/examples/imdb/parser/ImdbParser.java -------------------------------------------------------------------------------- /imdb/src/main/java/org/neo4j/examples/imdb/parser/ImdbReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/java/org/neo4j/examples/imdb/parser/ImdbReader.java -------------------------------------------------------------------------------- /imdb/src/main/java/org/neo4j/examples/imdb/parser/ImdbReaderImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/java/org/neo4j/examples/imdb/parser/ImdbReaderImpl.java -------------------------------------------------------------------------------- /imdb/src/main/java/org/neo4j/examples/imdb/parser/MovieData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/java/org/neo4j/examples/imdb/parser/MovieData.java -------------------------------------------------------------------------------- /imdb/src/main/java/org/neo4j/examples/imdb/parser/RoleData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/java/org/neo4j/examples/imdb/parser/RoleData.java -------------------------------------------------------------------------------- /imdb/src/main/java/org/neo4j/examples/imdb/web/ActorFindControllerDelegate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/java/org/neo4j/examples/imdb/web/ActorFindControllerDelegate.java -------------------------------------------------------------------------------- /imdb/src/main/java/org/neo4j/examples/imdb/web/ActorForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/java/org/neo4j/examples/imdb/web/ActorForm.java -------------------------------------------------------------------------------- /imdb/src/main/java/org/neo4j/examples/imdb/web/ActorInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/java/org/neo4j/examples/imdb/web/ActorInfo.java -------------------------------------------------------------------------------- /imdb/src/main/java/org/neo4j/examples/imdb/web/FindController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/java/org/neo4j/examples/imdb/web/FindController.java -------------------------------------------------------------------------------- /imdb/src/main/java/org/neo4j/examples/imdb/web/FindControllerDelegate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/java/org/neo4j/examples/imdb/web/FindControllerDelegate.java -------------------------------------------------------------------------------- /imdb/src/main/java/org/neo4j/examples/imdb/web/ImdbSetupControllerDelegate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/java/org/neo4j/examples/imdb/web/ImdbSetupControllerDelegate.java -------------------------------------------------------------------------------- /imdb/src/main/java/org/neo4j/examples/imdb/web/MovieFindControllerDelegate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/java/org/neo4j/examples/imdb/web/MovieFindControllerDelegate.java -------------------------------------------------------------------------------- /imdb/src/main/java/org/neo4j/examples/imdb/web/MovieForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/java/org/neo4j/examples/imdb/web/MovieForm.java -------------------------------------------------------------------------------- /imdb/src/main/java/org/neo4j/examples/imdb/web/MovieInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/java/org/neo4j/examples/imdb/web/MovieInfo.java -------------------------------------------------------------------------------- /imdb/src/main/java/org/neo4j/examples/imdb/web/SetupController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/java/org/neo4j/examples/imdb/web/SetupController.java -------------------------------------------------------------------------------- /imdb/src/main/java/org/neo4j/examples/imdb/web/SetupControllerDelegate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/java/org/neo4j/examples/imdb/web/SetupControllerDelegate.java -------------------------------------------------------------------------------- /imdb/src/main/java/org/neo4j/examples/imdb/web/SetupForm.java: -------------------------------------------------------------------------------- 1 | package org.neo4j.examples.imdb.web; 2 | 3 | public class SetupForm { 4 | } 5 | -------------------------------------------------------------------------------- /imdb/src/main/model/imdb.domain.impl.ucls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/model/imdb.domain.impl.ucls -------------------------------------------------------------------------------- /imdb/src/main/model/imdb.domain.interface.simple.ucls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/model/imdb.domain.interface.simple.ucls -------------------------------------------------------------------------------- /imdb/src/main/model/imdb.domain.interface.ucls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/model/imdb.domain.interface.ucls -------------------------------------------------------------------------------- /imdb/src/main/model/imdb.domain.service.search.ucls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/model/imdb.domain.service.search.ucls -------------------------------------------------------------------------------- /imdb/src/main/model/imdb.domain.service.ucls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/model/imdb.domain.service.ucls -------------------------------------------------------------------------------- /imdb/src/main/model/imdb.packages.ucls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/model/imdb.packages.ucls -------------------------------------------------------------------------------- /imdb/src/main/model/imdb.parser.data.ucls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/model/imdb.parser.data.ucls -------------------------------------------------------------------------------- /imdb/src/main/model/imdb.parser.ucls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/model/imdb.parser.ucls -------------------------------------------------------------------------------- /imdb/src/main/model/imdb.util.ucls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/model/imdb.util.ucls -------------------------------------------------------------------------------- /imdb/src/main/model/imdb.web.find.ucls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/model/imdb.web.find.ucls -------------------------------------------------------------------------------- /imdb/src/main/model/imdb.web.setup.ucls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/model/imdb.web.setup.ucls -------------------------------------------------------------------------------- /imdb/src/main/resources/data/actors.list.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/resources/data/actors.list.gz -------------------------------------------------------------------------------- /imdb/src/main/resources/data/actresses.list.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/resources/data/actresses.list.gz -------------------------------------------------------------------------------- /imdb/src/main/resources/data/movies.list.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/resources/data/movies.list.gz -------------------------------------------------------------------------------- /imdb/src/main/webapp/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /imdb/src/main/webapp/WEB-INF/imdb-app-servlet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/webapp/WEB-INF/imdb-app-servlet.xml -------------------------------------------------------------------------------- /imdb/src/main/webapp/WEB-INF/tld/spring-form.tld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/webapp/WEB-INF/tld/spring-form.tld -------------------------------------------------------------------------------- /imdb/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /imdb/src/main/webapp/actor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/webapp/actor.png -------------------------------------------------------------------------------- /imdb/src/main/webapp/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/webapp/bg.png -------------------------------------------------------------------------------- /imdb/src/main/webapp/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/webapp/favicon.ico -------------------------------------------------------------------------------- /imdb/src/main/webapp/gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/webapp/gradient.png -------------------------------------------------------------------------------- /imdb/src/main/webapp/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/webapp/index.jsp -------------------------------------------------------------------------------- /imdb/src/main/webapp/jsp/actor-list.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/webapp/jsp/actor-list.jsp -------------------------------------------------------------------------------- /imdb/src/main/webapp/jsp/actor.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/webapp/jsp/actor.jsp -------------------------------------------------------------------------------- /imdb/src/main/webapp/jsp/head.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/webapp/jsp/head.jsp -------------------------------------------------------------------------------- /imdb/src/main/webapp/jsp/include.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/webapp/jsp/include.jsp -------------------------------------------------------------------------------- /imdb/src/main/webapp/jsp/menu.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/webapp/jsp/menu.jsp -------------------------------------------------------------------------------- /imdb/src/main/webapp/jsp/movie-list.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/webapp/jsp/movie-list.jsp -------------------------------------------------------------------------------- /imdb/src/main/webapp/jsp/movie.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/webapp/jsp/movie.jsp -------------------------------------------------------------------------------- /imdb/src/main/webapp/jsp/setup-message.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/webapp/jsp/setup-message.jsp -------------------------------------------------------------------------------- /imdb/src/main/webapp/jsp/setup.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/webapp/jsp/setup.jsp -------------------------------------------------------------------------------- /imdb/src/main/webapp/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/webapp/menu.png -------------------------------------------------------------------------------- /imdb/src/main/webapp/movie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/webapp/movie.png -------------------------------------------------------------------------------- /imdb/src/main/webapp/setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/webapp/setup.png -------------------------------------------------------------------------------- /imdb/src/main/webapp/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/main/webapp/style.css -------------------------------------------------------------------------------- /imdb/src/site/apt/index.apt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/site/apt/index.apt -------------------------------------------------------------------------------- /imdb/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/site/site.xml -------------------------------------------------------------------------------- /imdb/src/test/resources/icons/ACTS_IN.INCOMING.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/test/resources/icons/ACTS_IN.INCOMING.png -------------------------------------------------------------------------------- /imdb/src/test/resources/icons/ACTS_IN.OUTGOING.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/test/resources/icons/ACTS_IN.OUTGOING.png -------------------------------------------------------------------------------- /imdb/src/test/resources/icons/IMDB.OUTGOING.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/test/resources/icons/IMDB.OUTGOING.png -------------------------------------------------------------------------------- /imdb/src/test/resources/icons/PART_OF_NAME.OUTGOING.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/test/resources/icons/PART_OF_NAME.OUTGOING.png -------------------------------------------------------------------------------- /imdb/src/test/resources/icons/PART_OF_TITLE.OUTGOING.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/imdb/src/test/resources/icons/PART_OF_TITLE.OUTGOING.png -------------------------------------------------------------------------------- /myrestaurants-original/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/.classpath -------------------------------------------------------------------------------- /myrestaurants-original/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /myrestaurants-original/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/.project -------------------------------------------------------------------------------- /myrestaurants-original/.settings/.jsdtscope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/.settings/.jsdtscope -------------------------------------------------------------------------------- /myrestaurants-original/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /myrestaurants-original/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/.settings/org.eclipse.wst.common.component -------------------------------------------------------------------------------- /myrestaurants-original/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/.settings/org.eclipse.wst.common.project.facet.core.xml -------------------------------------------------------------------------------- /myrestaurants-original/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /myrestaurants-original/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /myrestaurants-original/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/.settings/org.eclipse.wst.validation.prefs -------------------------------------------------------------------------------- /myrestaurants-original/.settings/org.maven.ide.eclipse.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/.settings/org.maven.ide.eclipse.prefs -------------------------------------------------------------------------------- /myrestaurants-original/.springBeans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/.springBeans -------------------------------------------------------------------------------- /myrestaurants-original/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/pom.xml -------------------------------------------------------------------------------- /myrestaurants-original/src/main/java/com/springone/myrestaurants/dao/RestaurantDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/java/com/springone/myrestaurants/dao/RestaurantDao.java -------------------------------------------------------------------------------- /myrestaurants-original/src/main/java/com/springone/myrestaurants/dao/UserAccountDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/java/com/springone/myrestaurants/dao/UserAccountDao.java -------------------------------------------------------------------------------- /myrestaurants-original/src/main/java/com/springone/myrestaurants/domain/Restaurant.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/java/com/springone/myrestaurants/domain/Restaurant.java -------------------------------------------------------------------------------- /myrestaurants-original/src/main/java/com/springone/myrestaurants/domain/UserAccount.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/java/com/springone/myrestaurants/domain/UserAccount.java -------------------------------------------------------------------------------- /myrestaurants-original/src/main/java/com/springone/myrestaurants/web/BaseApplicationController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/java/com/springone/myrestaurants/web/BaseApplicationController.java -------------------------------------------------------------------------------- /myrestaurants-original/src/main/java/com/springone/myrestaurants/web/RestaurantController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/java/com/springone/myrestaurants/web/RestaurantController.java -------------------------------------------------------------------------------- /myrestaurants-original/src/main/java/com/springone/myrestaurants/web/SignUpController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/java/com/springone/myrestaurants/web/SignUpController.java -------------------------------------------------------------------------------- /myrestaurants-original/src/main/resources/META-INF/persistence.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/resources/META-INF/persistence.xml -------------------------------------------------------------------------------- /myrestaurants-original/src/main/resources/META-INF/spring/applicationContext-security.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/resources/META-INF/spring/applicationContext-security.xml -------------------------------------------------------------------------------- /myrestaurants-original/src/main/resources/META-INF/spring/applicationContext.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/resources/META-INF/spring/applicationContext.xml -------------------------------------------------------------------------------- /myrestaurants-original/src/main/resources/META-INF/spring/database.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/resources/META-INF/spring/database.properties -------------------------------------------------------------------------------- /myrestaurants-original/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /myrestaurants-original/src/main/resources/restaurants-sample-data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/resources/restaurants-sample-data.sql -------------------------------------------------------------------------------- /myrestaurants-original/src/main/resources/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/resources/schema.sql -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/WEB-INF/classes/alt.properties: -------------------------------------------------------------------------------- 1 | styleSheet=resources/styles/alt.css 2 | -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/WEB-INF/classes/standard.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/WEB-INF/classes/standard.properties -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/WEB-INF/i18n/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/WEB-INF/i18n/application.properties -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/WEB-INF/i18n/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/WEB-INF/i18n/messages.properties -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/WEB-INF/layouts/default.jspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/WEB-INF/layouts/default.jspx -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/WEB-INF/layouts/layouts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/WEB-INF/layouts/layouts.xml -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/WEB-INF/spring/webmvc-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/WEB-INF/spring/webmvc-config.xml -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/WEB-INF/tags/form/create.tagx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/WEB-INF/tags/form/create.tagx -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/WEB-INF/tags/form/dependency.tagx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/WEB-INF/tags/form/dependency.tagx -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/WEB-INF/tags/form/fields/checkbox.tagx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/WEB-INF/tags/form/fields/checkbox.tagx -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/WEB-INF/tags/form/fields/column.tagx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/WEB-INF/tags/form/fields/column.tagx -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/WEB-INF/tags/form/fields/datetime.tagx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/WEB-INF/tags/form/fields/datetime.tagx -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/WEB-INF/tags/form/fields/display.tagx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/WEB-INF/tags/form/fields/display.tagx -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/WEB-INF/tags/form/fields/editor.tagx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/WEB-INF/tags/form/fields/editor.tagx -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/WEB-INF/tags/form/fields/input.tagx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/WEB-INF/tags/form/fields/input.tagx -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/WEB-INF/tags/form/fields/reference.tagx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/WEB-INF/tags/form/fields/reference.tagx -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/WEB-INF/tags/form/fields/select.tagx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/WEB-INF/tags/form/fields/select.tagx -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/WEB-INF/tags/form/fields/simple.tagx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/WEB-INF/tags/form/fields/simple.tagx -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/WEB-INF/tags/form/fields/table.tagx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/WEB-INF/tags/form/fields/table.tagx -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/WEB-INF/tags/form/fields/textarea.tagx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/WEB-INF/tags/form/fields/textarea.tagx -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/WEB-INF/tags/form/find.tagx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/WEB-INF/tags/form/find.tagx -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/WEB-INF/tags/form/list.tagx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/WEB-INF/tags/form/list.tagx -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/WEB-INF/tags/form/show.tagx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/WEB-INF/tags/form/show.tagx -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/WEB-INF/tags/form/update.tagx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/WEB-INF/tags/form/update.tagx -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/WEB-INF/tags/menu/category.tagx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/WEB-INF/tags/menu/category.tagx -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/WEB-INF/tags/menu/item.tagx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/WEB-INF/tags/menu/item.tagx -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/WEB-INF/tags/menu/menu.tagx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/WEB-INF/tags/menu/menu.tagx -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/WEB-INF/tags/util/language.tagx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/WEB-INF/tags/util/language.tagx -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/WEB-INF/tags/util/load-scripts.tagx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/WEB-INF/tags/util/load-scripts.tagx -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/WEB-INF/tags/util/pagination.tagx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/WEB-INF/tags/util/pagination.tagx -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/WEB-INF/tags/util/panel.tagx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/WEB-INF/tags/util/panel.tagx -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/WEB-INF/tags/util/placeholder.tagx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/WEB-INF/tags/util/placeholder.tagx -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/WEB-INF/tags/util/theme.tagx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/WEB-INF/tags/util/theme.tagx -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/WEB-INF/views/dataAccessFailure.jspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/WEB-INF/views/dataAccessFailure.jspx -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/WEB-INF/views/footer.jspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/WEB-INF/views/footer.jspx -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/WEB-INF/views/header.jspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/WEB-INF/views/header.jspx -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/WEB-INF/views/index-template.jspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/WEB-INF/views/index-template.jspx -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/WEB-INF/views/index.jspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/WEB-INF/views/index.jspx -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/WEB-INF/views/login.jspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/WEB-INF/views/login.jspx -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/WEB-INF/views/menu.jspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/WEB-INF/views/menu.jspx -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/WEB-INF/views/resourceNotFound.jspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/WEB-INF/views/resourceNotFound.jspx -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/WEB-INF/views/restaurants/create.jspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/WEB-INF/views/restaurants/create.jspx -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/WEB-INF/views/restaurants/list.jspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/WEB-INF/views/restaurants/list.jspx -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/WEB-INF/views/restaurants/show.jspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/WEB-INF/views/restaurants/show.jspx -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/WEB-INF/views/restaurants/update.jspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/WEB-INF/views/restaurants/update.jspx -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/WEB-INF/views/restaurants/views.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/WEB-INF/views/restaurants/views.xml -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/WEB-INF/views/uncaughtException.jspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/WEB-INF/views/uncaughtException.jspx -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/WEB-INF/views/useraccounts/create.jspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/WEB-INF/views/useraccounts/create.jspx -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/WEB-INF/views/useraccounts/list.jspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/WEB-INF/views/useraccounts/list.jspx -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/WEB-INF/views/useraccounts/show.jspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/WEB-INF/views/useraccounts/show.jspx -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/WEB-INF/views/useraccounts/update.jspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/WEB-INF/views/useraccounts/update.jspx -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/WEB-INF/views/useraccounts/views.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/WEB-INF/views/useraccounts/views.xml -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/WEB-INF/views/views.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/WEB-INF/views/views.xml -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/images/add.png -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/images/banner-graphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/images/banner-graphic.png -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/images/create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/images/create.png -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/images/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/images/delete.png -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/images/en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/images/en.png -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/images/fav-del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/images/fav-del.png -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/images/fav-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/images/fav-new.png -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/images/favicon.ico -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/images/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/images/list.png -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/images/resultset_first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/images/resultset_first.png -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/images/resultset_last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/images/resultset_last.png -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/images/resultset_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/images/resultset_next.png -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/images/resultset_previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/images/resultset_previous.png -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/images/show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/images/show.png -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/images/spring-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/images/spring-logo.png -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/images/springsource-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/images/springsource-logo.png -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/images/update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/images/update.png -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/styles/alt.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/styles/alt.css -------------------------------------------------------------------------------- /myrestaurants-original/src/main/webapp/styles/standard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-original/src/main/webapp/styles/standard.css -------------------------------------------------------------------------------- /myrestaurants-social/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/.classpath -------------------------------------------------------------------------------- /myrestaurants-social/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /myrestaurants-social/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/.project -------------------------------------------------------------------------------- /myrestaurants-social/.settings/.jsdtscope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/.settings/.jsdtscope -------------------------------------------------------------------------------- /myrestaurants-social/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /myrestaurants-social/.settings/org.eclipse.jst.jsp.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/.settings/org.eclipse.jst.jsp.core.prefs -------------------------------------------------------------------------------- /myrestaurants-social/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/.settings/org.eclipse.wst.common.component -------------------------------------------------------------------------------- /myrestaurants-social/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/.settings/org.eclipse.wst.common.project.facet.core.xml -------------------------------------------------------------------------------- /myrestaurants-social/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /myrestaurants-social/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /myrestaurants-social/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/.settings/org.eclipse.wst.validation.prefs -------------------------------------------------------------------------------- /myrestaurants-social/.settings/org.eclipse.wst.ws.service.policy.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/.settings/org.eclipse.wst.ws.service.policy.prefs -------------------------------------------------------------------------------- /myrestaurants-social/.settings/org.maven.ide.eclipse.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/.settings/org.maven.ide.eclipse.prefs -------------------------------------------------------------------------------- /myrestaurants-social/.springBeans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/.springBeans -------------------------------------------------------------------------------- /myrestaurants-social/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/pom.xml -------------------------------------------------------------------------------- /myrestaurants-social/src/main/java/com/springone/myrestaurants/data/RestaurantRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/java/com/springone/myrestaurants/data/RestaurantRepository.java -------------------------------------------------------------------------------- /myrestaurants-social/src/main/java/com/springone/myrestaurants/data/UserAccountRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/java/com/springone/myrestaurants/data/UserAccountRepository.java -------------------------------------------------------------------------------- /myrestaurants-social/src/main/java/com/springone/myrestaurants/domain/RatedRestaurant.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/java/com/springone/myrestaurants/domain/RatedRestaurant.java -------------------------------------------------------------------------------- /myrestaurants-social/src/main/java/com/springone/myrestaurants/domain/Recommendation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/java/com/springone/myrestaurants/domain/Recommendation.java -------------------------------------------------------------------------------- /myrestaurants-social/src/main/java/com/springone/myrestaurants/domain/Restaurant.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/java/com/springone/myrestaurants/domain/Restaurant.java -------------------------------------------------------------------------------- /myrestaurants-social/src/main/java/com/springone/myrestaurants/domain/TopRatedRestaurantFinder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/java/com/springone/myrestaurants/domain/TopRatedRestaurantFinder.java -------------------------------------------------------------------------------- /myrestaurants-social/src/main/java/com/springone/myrestaurants/domain/TopRatedRestaurantTraverser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/java/com/springone/myrestaurants/domain/TopRatedRestaurantTraverser.java -------------------------------------------------------------------------------- /myrestaurants-social/src/main/java/com/springone/myrestaurants/domain/UserAccount.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/java/com/springone/myrestaurants/domain/UserAccount.java -------------------------------------------------------------------------------- /myrestaurants-social/src/main/java/com/springone/myrestaurants/web/BaseApplicationController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/java/com/springone/myrestaurants/web/BaseApplicationController.java -------------------------------------------------------------------------------- /myrestaurants-social/src/main/java/com/springone/myrestaurants/web/FriendController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/java/com/springone/myrestaurants/web/FriendController.java -------------------------------------------------------------------------------- /myrestaurants-social/src/main/java/com/springone/myrestaurants/web/FriendFormBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/java/com/springone/myrestaurants/web/FriendFormBean.java -------------------------------------------------------------------------------- /myrestaurants-social/src/main/java/com/springone/myrestaurants/web/RatedRestaurantBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/java/com/springone/myrestaurants/web/RatedRestaurantBean.java -------------------------------------------------------------------------------- /myrestaurants-social/src/main/java/com/springone/myrestaurants/web/RecommendationController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/java/com/springone/myrestaurants/web/RecommendationController.java -------------------------------------------------------------------------------- /myrestaurants-social/src/main/java/com/springone/myrestaurants/web/RecommendationFormBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/java/com/springone/myrestaurants/web/RecommendationFormBean.java -------------------------------------------------------------------------------- /myrestaurants-social/src/main/java/com/springone/myrestaurants/web/RestaurantController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/java/com/springone/myrestaurants/web/RestaurantController.java -------------------------------------------------------------------------------- /myrestaurants-social/src/main/java/com/springone/myrestaurants/web/SignUpController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/java/com/springone/myrestaurants/web/SignUpController.java -------------------------------------------------------------------------------- /myrestaurants-social/src/main/java/com/springone/myrestaurants/web/TopNController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/java/com/springone/myrestaurants/web/TopNController.java -------------------------------------------------------------------------------- /myrestaurants-social/src/main/resources/META-INF/persistence.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/resources/META-INF/persistence.xml -------------------------------------------------------------------------------- /myrestaurants-social/src/main/resources/META-INF/spring/applicationContext-security.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/resources/META-INF/spring/applicationContext-security.xml -------------------------------------------------------------------------------- /myrestaurants-social/src/main/resources/META-INF/spring/applicationContext.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/resources/META-INF/spring/applicationContext.xml -------------------------------------------------------------------------------- /myrestaurants-social/src/main/resources/META-INF/spring/database.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/resources/META-INF/spring/database.properties -------------------------------------------------------------------------------- /myrestaurants-social/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /myrestaurants-social/src/main/resources/restaurants-sample-data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/resources/restaurants-sample-data.sql -------------------------------------------------------------------------------- /myrestaurants-social/src/main/resources/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/resources/schema.sql -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/classes/alt.properties: -------------------------------------------------------------------------------- 1 | styleSheet=resources/styles/alt.css 2 | -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/classes/standard.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/classes/standard.properties -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/i18n/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/i18n/application.properties -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/i18n/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/i18n/messages.properties -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/layouts/default.jspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/layouts/default.jspx -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/layouts/layouts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/layouts/layouts.xml -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/spring/webmvc-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/spring/webmvc-config.xml -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/tags/form/create.tagx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/tags/form/create.tagx -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/tags/form/dependency.tagx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/tags/form/dependency.tagx -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/tags/form/fields/checkbox.tagx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/tags/form/fields/checkbox.tagx -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/tags/form/fields/column.tagx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/tags/form/fields/column.tagx -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/tags/form/fields/datetime.tagx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/tags/form/fields/datetime.tagx -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/tags/form/fields/display.tagx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/tags/form/fields/display.tagx -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/tags/form/fields/editor.tagx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/tags/form/fields/editor.tagx -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/tags/form/fields/input.tagx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/tags/form/fields/input.tagx -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/tags/form/fields/reference.tagx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/tags/form/fields/reference.tagx -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/tags/form/fields/select.tagx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/tags/form/fields/select.tagx -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/tags/form/fields/simple.tagx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/tags/form/fields/simple.tagx -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/tags/form/fields/table.tagx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/tags/form/fields/table.tagx -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/tags/form/fields/textarea.tagx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/tags/form/fields/textarea.tagx -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/tags/form/find.tagx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/tags/form/find.tagx -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/tags/form/list.tagx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/tags/form/list.tagx -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/tags/form/show.tagx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/tags/form/show.tagx -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/tags/form/update.tagx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/tags/form/update.tagx -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/tags/menu/category.tagx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/tags/menu/category.tagx -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/tags/menu/item.tagx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/tags/menu/item.tagx -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/tags/menu/menu.tagx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/tags/menu/menu.tagx -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/tags/util/language.tagx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/tags/util/language.tagx -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/tags/util/load-scripts.tagx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/tags/util/load-scripts.tagx -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/tags/util/pagination.tagx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/tags/util/pagination.tagx -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/tags/util/panel.tagx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/tags/util/panel.tagx -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/tags/util/placeholder.tagx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/tags/util/placeholder.tagx -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/tags/util/theme.tagx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/tags/util/theme.tagx -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/views/dataAccessFailure.jspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/views/dataAccessFailure.jspx -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/views/footer.jspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/views/footer.jspx -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/views/friends/create.jspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/views/friends/create.jspx -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/views/friends/list.jspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/views/friends/list.jspx -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/views/friends/show.jspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/views/friends/show.jspx -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/views/friends/update.jspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/views/friends/update.jspx -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/views/friends/views.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/views/friends/views.xml -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/views/header.jspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/views/header.jspx -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/views/index-template.jspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/views/index-template.jspx -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/views/index.jspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/views/index.jspx -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/views/login.jspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/views/login.jspx -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/views/menu.jspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/views/menu.jspx -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/views/recommendations/create.jspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/views/recommendations/create.jspx -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/views/recommendations/list.jspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/views/recommendations/list.jspx -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/views/recommendations/show.jspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/views/recommendations/show.jspx -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/views/recommendations/update.jspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/views/recommendations/update.jspx -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/views/recommendations/views.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/views/recommendations/views.xml -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/views/resourceNotFound.jspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/views/resourceNotFound.jspx -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/views/restaurants/create.jspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/views/restaurants/create.jspx -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/views/restaurants/list.jspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/views/restaurants/list.jspx -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/views/restaurants/show.jspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/views/restaurants/show.jspx -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/views/restaurants/update.jspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/views/restaurants/update.jspx -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/views/restaurants/views.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/views/restaurants/views.xml -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/views/topn/list.jspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/views/topn/list.jspx -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/views/topn/views.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/views/topn/views.xml -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/views/uncaughtException.jspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/views/uncaughtException.jspx -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/views/useraccounts/create.jspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/views/useraccounts/create.jspx -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/views/useraccounts/list.jspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/views/useraccounts/list.jspx -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/views/useraccounts/show.jspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/views/useraccounts/show.jspx -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/views/useraccounts/update.jspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/views/useraccounts/update.jspx -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/views/useraccounts/views.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/views/useraccounts/views.xml -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/views/views.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/views/views.xml -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/images/Thumbs.db -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/images/add.png -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/images/banner-graphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/images/banner-graphic.png -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/images/create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/images/create.png -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/images/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/images/delete.png -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/images/en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/images/en.png -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/images/fav-del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/images/fav-del.png -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/images/fav-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/images/fav-new.png -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/images/favicon.ico -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/images/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/images/list.png -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/images/recommend.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/images/recommend.gif -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/images/resultset_first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/images/resultset_first.png -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/images/resultset_last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/images/resultset_last.png -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/images/resultset_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/images/resultset_next.png -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/images/resultset_previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/images/resultset_previous.png -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/images/show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/images/show.png -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/images/spring-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/images/spring-logo.png -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/images/springsource-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/images/springsource-logo.png -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/images/thumbsup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/images/thumbsup.png -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/images/update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/images/update.png -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/styles/alt.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/styles/alt.css -------------------------------------------------------------------------------- /myrestaurants-social/src/main/webapp/styles/standard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/main/webapp/styles/standard.css -------------------------------------------------------------------------------- /myrestaurants-social/src/test/java/com/springdeveloper/data/neo/PrintNeo4j.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/test/java/com/springdeveloper/data/neo/PrintNeo4j.java -------------------------------------------------------------------------------- /myrestaurants-social/src/test/java/com/springone/myrestaurants/data/AbstractTestWithUserAccount.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/test/java/com/springone/myrestaurants/data/AbstractTestWithUserAccount.java -------------------------------------------------------------------------------- /myrestaurants-social/src/test/java/com/springone/myrestaurants/data/RestaurantRepositoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/test/java/com/springone/myrestaurants/data/RestaurantRepositoryTest.java -------------------------------------------------------------------------------- /myrestaurants-social/src/test/java/com/springone/myrestaurants/data/UserAccountRelationshipsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/test/java/com/springone/myrestaurants/data/UserAccountRelationshipsTest.java -------------------------------------------------------------------------------- /myrestaurants-social/src/test/java/com/springone/myrestaurants/data/UserAccountRepositoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/test/java/com/springone/myrestaurants/data/UserAccountRepositoryTest.java -------------------------------------------------------------------------------- /myrestaurants-social/src/test/java/com/springone/myrestaurants/domain/TopRatedRestaurantFinderTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/test/java/com/springone/myrestaurants/domain/TopRatedRestaurantFinderTest.java -------------------------------------------------------------------------------- /myrestaurants-social/src/test/resources/com/springone/myrestaurants/data/DataStore-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/test/resources/com/springone/myrestaurants/data/DataStore-context.xml -------------------------------------------------------------------------------- /myrestaurants-social/src/test/resources/com/springone/myrestaurants/data/RestaurantRepositoryTest-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/test/resources/com/springone/myrestaurants/data/RestaurantRepositoryTest-context.xml -------------------------------------------------------------------------------- /myrestaurants-social/src/test/resources/com/springone/myrestaurants/data/UserAccountRelationshipsTest-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/test/resources/com/springone/myrestaurants/data/UserAccountRelationshipsTest-context.xml -------------------------------------------------------------------------------- /myrestaurants-social/src/test/resources/com/springone/myrestaurants/data/UserAccountRepositoryTest-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/test/resources/com/springone/myrestaurants/data/UserAccountRepositoryTest-context.xml -------------------------------------------------------------------------------- /myrestaurants-social/src/test/resources/com/springone/myrestaurants/domain/DataStore-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/test/resources/com/springone/myrestaurants/domain/DataStore-context.xml -------------------------------------------------------------------------------- /myrestaurants-social/src/test/resources/com/springone/myrestaurants/domain/TopRatedRestaurantFinderTest-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/myrestaurants-social/src/test/resources/com/springone/myrestaurants/domain/TopRatedRestaurantFinderTest-context.xml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-attic/spring-data-graph-examples/HEAD/readme.md --------------------------------------------------------------------------------