aboutsummaryrefslogtreecommitdiffstats
path: root/application/src/test/java/com/yahoo/application/TestDocProc.java
blob: 6e357f08c90dd4380b8aea2a2c8495caf6c56a9f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.application;

import com.yahoo.docproc.DocumentProcessor;
import com.yahoo.docproc.Processing;
import com.yahoo.document.config.DocumentmanagerConfig;

/**
 * @author bratseth
 */
public class TestDocProc extends DocumentProcessor {

    public TestDocProc(DocumentmanagerConfig config) {
    }

    @Override
    public Progress process(Processing processing) {
        return Progress.DONE;
    }

}