Exemplo n.º 1
0
 protected static void setCurrent(Session session, NodeOrRelationship current) {
   session.set(CURRENT_KEY, current.getTypedId().toString());
 }
Exemplo n.º 2
0
 public static void writeCurrentWorkingDir(List<TypedId> paths, Session session)
     throws RemoteException {
   session.set(WORKING_DIR_KEY, makePath(paths));
 }
Exemplo n.º 3
0
 protected static void clearCurrent(Session session) {
   session.set(CURRENT_KEY, new TypedId(NodeOrRelationship.TYPE_NODE, 0).toString());
 }