summaryrefslogtreecommitdiffstats
path: root/document/src/main/java/com/yahoo/vespaxmlparser/RemoveFeedOperation.java
blob: 6c9c87feef40cc3de122c66adbb2e0af6e0a698e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespaxmlparser;

import com.yahoo.document.DocumentId;
import com.yahoo.document.DocumentRemove;
import com.yahoo.document.TestAndSetCondition;

public class RemoveFeedOperation extends ConditionalFeedOperation {
    private final DocumentRemove remove;
    public RemoveFeedOperation(DocumentRemove remove) {
        super(Type.REMOVE, remove.getCondition());
        this.remove = remove;
    }

    @Override
    public DocumentRemove getDocumentRemove() {
        return remove;
    }
}