Package org.cedj.geekseek.domain.relation.model

Examples of org.cedj.geekseek.domain.relation.model.Relation


    }

    @Test @InSequence(0)
    public void shouldBeAbleToCreateRelation() {

        Relation relation = repository.add(source, type, target);

        Assert.assertEquals("Verify returned object has same source id", relation.getSourceId(), source.getId());
        Assert.assertEquals("Verify returned object has same target id", relation.getTargetId(), target.getId());
        Assert.assertEquals("Verify returned object has same type", relation.getType(), type);

        Assert.assertNotNull("Verify created date was set", relation.getCreated());
    }
View Full Code Here


            throw new RuntimeException(
                "Could not add relation of type " + type + " between " + source + " and " + target, e);
        } finally {
          tx.finish();
        }
        return new Relation(source.getId(), target.getId(), type);
    }
View Full Code Here

        Identifiable target = targetRepo.get(targetId);
        if(source == null || target == null) {
            return Response.status(Status.NOT_FOUND).build();
        }

        Relation relation = repositry.add(source, relationship, target);
        return Response.ok(relation).build();
    }
View Full Code Here

TOP

Related Classes of org.cedj.geekseek.domain.relation.model.Relation

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.