Exemplo n.º 1
0
 @Override
 public Iterator<Property> relationshipGetAllProperties(StatementState state, long relationshipId)
     throws EntityNotFoundException {
   try {
     return loadAllPropertiesOf(relationshipStore.getRecord(relationshipId));
   } catch (InvalidRecordException e) {
     throw new EntityNotFoundException(EntityType.RELATIONSHIP, relationshipId, e);
   }
 }