Package org.fao.geonet.kernel.harvest.Common

Examples of org.fao.geonet.kernel.harvest.Common.Status


     * Run the harvester in the synchronously (in the current thread) and return whether the harvest correctly completed.
     *
     * @return {@link OperResult#OK} or {@link OperResult#ERROR}
     */
    public synchronized OperResult invoke() {
        Status oldStatus = status;

        try {
            status = Status.ACTIVE;
            return harvest();
        } finally {
View Full Code Here

TOP

Related Classes of org.fao.geonet.kernel.harvest.Common.Status

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.