Package com.impetus.kundera.persistence

Examples of com.impetus.kundera.persistence.IdGenerator


    public ObjectGraphBuilder(PersistenceCache pcCache, PersistenceDelegator pd)
    {
        this.persistenceCache = pcCache;
        this.pd = pd;
        this.idGenerator = new IdGenerator();
        this.validator = new PersistenceValidator();
    }
View Full Code Here


        // set id, in case of auto generation and still not set.

        if (ObjectGraphUtils.onAutoGenerateId((Field) entityMetadata.getIdAttribute().getJavaMember(), id))
        {
            id = new IdGenerator().generateAndSetId(entity, entityMetadata, delegator, delegator.getKunderaMetadata());
        }

        // check if id is set or not.
        new PrimaryKeyNullCheck<Object>().validate(id);
View Full Code Here

TOP

Related Classes of com.impetus.kundera.persistence.IdGenerator

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.