Examples of UuidPkEntity


Examples of org.apache.cayenne.testdo.testmap.UuidPkEntity

    }

    public void testUUIDMeaningfulPkInsert() throws Exception {
        UUID id = UUID.randomUUID();

        UuidPkEntity o1 = context.newObject(UuidPkEntity.class);
        o1.setId(id);

        context.commitChanges();

        String fetched = uuidPkEntity.getString("ID");
        assertEquals(id, UUID.fromString(fetched));
View Full Code Here

Examples of org.apache.cayenne.testdo.testmap.UuidPkEntity

    public void testUUIDMeaningfulPkSelect() throws Exception {
        UUID id = UUID.randomUUID();

        uuidPkEntity.insert(id.toString());

        UuidPkEntity o1 = Cayenne.objectForPK(context, UuidPkEntity.class, id);

        assertNotNull(o1);
        assertEquals(id, o1.getId());
        assertEquals(id, o1.getObjectId().getIdSnapshot().get("ID"));
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.