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

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

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

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