Package org.lilyproject.repository.spi

Examples of org.lilyproject.repository.spi.RecordUpdateHook


        }

        // Handle user-configured hooks
        for (String name : configuredHooks) {
            if (!name.startsWith("org.lilyproject")) {
                RecordUpdateHook updateHook = this.hooks.get(name);
                if (updateHook == null) {
                    throw new RuntimeException("No record update hook registered with the name '" + name + "'");
                }
                updateHooks.add(updateHook);
            } else {
View Full Code Here

TOP

Related Classes of org.lilyproject.repository.spi.RecordUpdateHook

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.