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

import com.yahoo.document.DocumentOperation;

/**
 * @author Einar M R Rosenvinge
 */
public interface DocumentOperationWrapper {

    DocumentOperation getWrappedDocumentOperation();

}