aboutsummaryrefslogtreecommitdiffstats
path: root/docproc/src/main/java/com/yahoo/docproc/DocumentOperationWrapper.java
blob: 4530af296006d77dd31794c245ad7d9304fd7115 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.docproc;

import com.yahoo.document.DocumentOperation;

/**
 * @author Einar M R Rosenvinge
 * @deprecated  Will be removed in Vespa 8. Only for internal use.
 */
@Deprecated(forRemoval = true, since = "7")
public interface DocumentOperationWrapper {

    DocumentOperation getWrappedDocumentOperation();

}