Package com.sleepycat.bind.serial

Examples of com.sleepycat.bind.serial.TupleSerialMarshalledKeyCreator


     * method to identify the secondary key.
     */
    public TupleSerialMarshalledKeyCreator getKeyCreator(Class valueBaseClass,
                                                         String keyName) {

        return new TupleSerialMarshalledKeyCreator(
                                            getEntityBinding(valueBaseClass),
                                            keyName);
    }
View Full Code Here


                                              Database primary,
                                              String file,
                                              Database foreignStore)
        throws Exception {

        TupleSerialMarshalledKeyCreator keyCreator =
                factory.getKeyCreator(MarshalledObject.class, keyName);

        SecondaryConfig secConfig = new SecondaryConfig();
        secConfig.setTransactional(testEnv.isTxnMode());
        secConfig.setAllowCreate(true);
View Full Code Here

                                              Database primary,
                                              String file,
                                              Database foreignStore)
        throws Exception {

        TupleSerialMarshalledKeyCreator keyCreator =
                factory.getKeyCreator(MarshalledObject.class, keyName);

        SecondaryConfig secConfig = new SecondaryConfig();
        DbCompat.setTypeBtree(secConfig);
        secConfig.setTransactional(testEnv.isTxnMode());
View Full Code Here

     * method to identify the secondary key.
     */
    public TupleSerialMarshalledKeyCreator getKeyCreator(Class valueBaseClass,
                                                         String keyName) {

        return new TupleSerialMarshalledKeyCreator(
                                            getEntityBinding(valueBaseClass),
                                            keyName);
    }
View Full Code Here

     * method to identify the secondary key.
     */
    public TupleSerialMarshalledKeyCreator getKeyCreator(Class valueBaseClass,
                                                         String keyName) {

        return new TupleSerialMarshalledKeyCreator(
                                            getEntityBinding(valueBaseClass),
                                            keyName);
    }
View Full Code Here

TOP

Related Classes of com.sleepycat.bind.serial.TupleSerialMarshalledKeyCreator

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.