Package grails.plugin.searchable.internal.compass.config.mapping

Examples of grails.plugin.searchable.internal.compass.config.mapping.SearchableGrailsDomainClassMappingConfigurator.configureMappings()


        // map classes in the order defined by the classMappingConfigurators
        for (int i = 0; i < classMappingConfigurators.length; i++) {
            SearchableGrailsDomainClassMappingConfigurator classMappingConfigurator = classMappingConfigurators[i];
            Collection classes = (Collection) classesByStrategy.get(classMappingConfigurator);
            if (classes != null && !classes.isEmpty()) {
                classMappingConfigurator.configureMappings(compassConfiguration, configurationContext, classes, mappableClasses);
            }
        }

        // Finally, execute the config-based configurator so that it can add and
        // override mappings.
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.