Package org.apache.cassandra.db.index

Examples of org.apache.cassandra.db.index.SecondaryIndex.validate()


        {
            try
            {
                Class<? extends SecondaryIndex> clazz = Class.forName(customClass).asSubclass(SecondaryIndex.class);
                SecondaryIndex secondaryIndex = clazz.newInstance();
                secondaryIndex.validate(metadata, getOptions());
            }
            catch (ClassNotFoundException | IllegalAccessException | InstantiationException e)
            {
                throw new InvalidRequestException("Class not found");
            }
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.