comparison src/main/java/de/mpiwg/itgroup/annotations/neo4j/AnnotationStore.java @ 11:bc90aaeb925d

permissions still under construction.
author casties
date Fri, 13 Jul 2012 11:24:39 +0200
parents 90911b2da322
children 5928c5d9aae8
comparison
equal deleted inserted replaced
10:90911b2da322 11:bc90aaeb925d
176 * The creation date of this annotation. 176 * The creation date of this annotation.
177 */ 177 */
178 String created = annot.getCreated(); 178 String created = annot.getCreated();
179 if (created != null) { 179 if (created != null) {
180 annotNode.setProperty("created", created); 180 annotNode.setProperty("created", created);
181 }
182
183 /*
184 * Permissions for this annotation.
185 */
186 Actor admin = annot.getAdminPermission();
187 if (admin != null) {
188
181 } 189 }
182 190
183 tx.success(); 191 tx.success();
184 } finally { 192 } finally {
185 tx.finish(); 193 tx.finish();