Package grails.plugin.searchable.internal.compass.support

Examples of grails.plugin.searchable.internal.compass.support.AbstractSearchableMethod


    private Compass compass;
    private CompassGps compassGps;
    private GrailsApplication grailsApplication;

    public SearchableMethod getMethod(final Class clazz, String methodName) {
        AbstractSearchableMethod method = (AbstractSearchableMethod) getMethod(methodName);
        Map options = new HashMap(method.getDefaultOptions()); // clone to avoid corrupting original
        options.put("match", clazz);
        method.setDefaultOptions(options);
        return method;
    }
View Full Code Here

TOP

Related Classes of grails.plugin.searchable.internal.compass.support.AbstractSearchableMethod

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.