Package grails.plugin.searchable.internal

Examples of grails.plugin.searchable.internal.SearchableMethod


    public Object invoke(Object[] args) {
        Assert.notNull(args, "args cannot be null");
        Assert.notEmpty(args, "args cannot be empty");

        SearchableMethod suggestQueryMethod = getMethodFactory().getMethod("suggestQuery");

        SearchCompassCallback searchCallback = new SearchCompassCallback(getCompass(), getDefaultOptions(), args);
        searchCallback.setGrailsApplication(grailsApplication);
        searchCallback.setCompassQueryBuilder(compassQueryBuilder);
        searchCallback.setHitCollector(hitCollector);
View Full Code Here

TOP

Related Classes of grails.plugin.searchable.internal.SearchableMethod

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.