6869707172737475767778
throw new IllegalStateException("Node with id=" + id + " already exists in permanent space"); } else { spaceManager.setIsPermanent(node, entity); } Neo4JErsatz ret = new Neo4JNodeErsatz(entity, node); Ersatz.copy(row, ret); return ret; }
3233343536373839404142
public Cursor<Neo4JErsatz> query(EOQualifier qualifier) { return luceneStore.query(qualifier); } public Neo4JErsatz insert(Ersatz row) { Neo4JErsatz newNeo = neoStore.insert(row); if (newNeo != null) { luceneStore.insert(newNeo); }