Package com.sleepycat.persist.model

Examples of com.sleepycat.persist.model.ClassMetadata


        if (secondaryKeys != null) {
            for (SecondaryKeyMetadata metadata : secondaryKeys) {
                secondaryKeyMap.put(metadata.getName(), metadata);
            }
        }
        ClassMetadata classMetadata = new ClassMetadata(type.getName(), 0, null, true, primaryKey,
                secondaryKeyMap, null, fields);
        primaryKey = null;
        secondaryKeys.clear();
        entityClass = null;
        return classMetadata;
View Full Code Here

TOP

Related Classes of com.sleepycat.persist.model.ClassMetadata

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.