Skip to content
This repository has been archived by the owner on Jul 1, 2021. It is now read-only.

Commit

Permalink
closing #28 & some staff for #29
Browse files Browse the repository at this point in the history
  • Loading branch information
Benoît Simard committed Jun 23, 2013
1 parent d8157db commit 7592aaf
Show file tree
Hide file tree
Showing 64 changed files with 19 additions and 3,739 deletions.
2 changes: 1 addition & 1 deletion build.properties
@@ -1 +1 @@
play.path=/usr/local/play/play1
play.path=/usr/local/play/play1/current
26 changes: 7 additions & 19 deletions conf/dependencies.yml
@@ -1,27 +1,15 @@
self: play -> neo4j 1.0.2
self: play -> neo4j 1.9

require:
- play
- org.neo4j -> neo4j 1.9
- org.neo4j.app -> neo4j-server 1.9
- org.neo4j.app -> neo4j-server 1.9 static-web
- com.sun.jersey -> jersey-core 1.9

repositories:
- Neo4j:
- neo4j-release:
type: iBiblio
root: "http://m2.neo4j.org/content/repositories/releases"
contains:
- org.neo4j -> *
- osgeo:
type: iBiblio
root: "http://download.osgeo.org/webdav/geotools/"
- opengeo:
type: iBiblio
root: "http://repo.opengeo.org"
contains:
- org.opengeo -> *
- tinkerpop:
type: iBiblio
root: "http://tinkerpop.com/maven2"
contains:
- com.tinkerpop -> *



- org.neo4j -> *
2 changes: 1 addition & 1 deletion documentation/manual/home.textile
Expand Up @@ -109,7 +109,7 @@ With Neo4jRelatedTo annotation, you can also defined some attributes :
</p>
<ul>
<li><strong>lazy :</strong> like hibernate, you can do lazy loading for relation. By default, it's value is "true" to avoid circular reference and avoid loop that produce "Java Heap Space".</li>
<li><strong>direction :</strong>to specified the direction of the relation. By default, it's "OUTGOING", but you can change it to "INCOMING". Direction "BOTH is not implemented !!!</li>
<li><strong>direction :</strong>to specified the direction of the relation. By default, it's OUTGOING, but you can change it to INCOMING or BOTH.</li>
</ul>


Expand Down
Binary file removed lib/antlr-2.7.7.jar
Binary file not shown.
Binary file removed lib/asm-analysis-3.2.jar
Binary file not shown.
Binary file removed lib/asm-commons-3.2.jar
Binary file not shown.
Binary file removed lib/asm-tree-3.2.jar
Binary file not shown.
Binary file removed lib/asm-util-3.2.jar
Binary file not shown.
Binary file removed lib/blueprints-core-1.2.jar
Binary file not shown.
Binary file removed lib/blueprints-neo4j-graph-1.2.jar
Binary file not shown.
Binary file removed lib/commons-beanutils-1.8.0.jar
Binary file not shown.
Binary file removed lib/commons-collections-3.2.1.jar
Binary file not shown.
Binary file removed lib/commons-io-1.4.jar
Binary file not shown.
Binary file removed lib/commons-lang-2.4.jar
Binary file not shown.
Binary file removed lib/commons-logging-1.1.1.jar
Binary file not shown.
Empty file modified lib/geronimo-jta_1.1_spec-1.1.1.jar 100644 → 100755
Empty file.
Binary file removed lib/gremlin-groovy-1.5.jar
Binary file not shown.
Binary file removed lib/gremlin-java-1.5.jar
Binary file not shown.
Binary file removed lib/groovy-1.8.5.jar
Binary file not shown.
Binary file removed lib/jackson-core-asl-1.8.3.jar
Binary file not shown.
Binary file removed lib/jackson-jaxrs-1.8.3.jar
Binary file not shown.
Binary file removed lib/jackson-mapper-asl-1.8.3.jar
Binary file not shown.
Binary file removed lib/jansi-1.5.jar
Binary file not shown.
Binary file removed lib/jcl-over-slf4j-1.6.1.jar
Binary file not shown.
Binary file removed lib/jettison-1.3.jar
Binary file not shown.
Binary file removed lib/lucene-core-3.5.0.jar
Binary file not shown.
Binary file removed lib/neo4j-cypher-1.7.jar
Binary file not shown.
Binary file removed lib/neo4j-cypher-plugin-1.7.jar
Binary file not shown.
Binary file removed lib/neo4j-graph-algo-1.7.jar
Binary file not shown.
Binary file removed lib/neo4j-graph-matching-1.7.jar
Binary file not shown.
Binary file removed lib/neo4j-gremlin-plugin-1.7.jar
Binary file not shown.
Binary file removed lib/neo4j-jmx-1.7.jar
Binary file not shown.
Binary file removed lib/neo4j-kernel-1.7.jar
Binary file not shown.
Binary file removed lib/neo4j-lucene-index-1.7.jar
Binary file not shown.
Binary file removed lib/neo4j-server-1.7-static-web.jar
Binary file not shown.
Binary file removed lib/neo4j-server-1.7.jar
Binary file not shown.
Binary file removed lib/neo4j-shell-1.7.jar
Binary file not shown.
Binary file removed lib/neo4j-udc-1.7.jar
Binary file not shown.
Empty file modified lib/org.apache.servicemix.bundles.jline-0.9.94_1.jar 100644 → 100755
Empty file.
Binary file removed lib/pipes-1.0.jar
Binary file not shown.
Binary file removed lib/scala-library-2.9.0-1.jar
Binary file not shown.
Binary file removed lib/server-api-1.7.jar
Binary file not shown.
Binary file removed lib/slf4j-api-1.6.1.jar
Binary file not shown.
Binary file removed lib/slf4j-jdk14-1.6.1.jar
Binary file not shown.
Binary file removed lib/stax-api-1.0.1.jar
Binary file not shown.
Expand Up @@ -3,6 +3,8 @@
import java.util.Date;
import java.util.List;

import org.neo4j.graphdb.Direction;

import play.db.jpa.Blob;
import play.modules.neo4j.annotation.Neo4jIndex;
import play.modules.neo4j.annotation.Neo4jRelatedTo;
Expand Down Expand Up @@ -33,10 +35,10 @@ public class User extends Neo4jModel {

public Boolean isActive;

@Neo4jRelatedTo(value = "IS_FRIEND", lazy = false)
@Neo4jRelatedTo(value = "IS_FRIEND", lazy = true)
public List<User> friends;

@Neo4jRelatedTo(value = "IS_FRIEND", direction = "INCOMING")
@Neo4jRelatedTo(value = "IS_FRIEND", direction = Direction.INCOMING, lazy = true)
public List<User> reversefriends;

@Neo4jRelatedTo("IS_FAMILLY")
Expand All @@ -48,7 +50,7 @@ public class User extends Neo4jModel {
@Neo4jRelatedTo(value = "IS_A_CLASSMATE")
public List<User> classmates;

@Neo4jUniqueRelation(value = "NEXT_JOB", line = true)
@Neo4jUniqueRelation(value = "NEXT_JOB", line = false)
public Job job;

@Neo4jUniqueRelation(value = "ADDRESS", line = false)
Expand Down
1,474 changes: 0 additions & 1,474 deletions samples-and-tests/logisima-play-neo4j-touiteur/logs/system.out

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

0 comments on commit 7592aaf

Please sign in to comment.