Package org.compass.core

Examples of org.compass.core.CompassTemplate


    public void afterPropertiesSet() throws Exception {
        if (compass == null) {
            throw new IllegalArgumentException(
                    "Must set compass property");
        }
        this.compassTemplate = new CompassTemplate(compass);

        // ensure that our gps is going to mirror all data changes from
        // here on out.
        // this will give us real time searchability of saved objects
        mirrorGPS.setMirrorDataChanges(true);
View Full Code Here


    public Object call(Object[] args) {
        return invoke(args);
    }

    protected Object doInCompass(CompassCallback compassCallback) {
        return new CompassTemplate(compass).execute(compassCallback);
    }
View Full Code Here

TOP

Related Classes of org.compass.core.CompassTemplate

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.