aboutsummaryrefslogtreecommitdiffstats
path: root/document/src/main/java/com/yahoo/vespaxmlparser/RemoveFeedOperation.java
blob: 86bd4632905d7172187d0cfa1f53f25bd35c7de9 (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 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.TestAndSetCondition;

public class RemoveFeedOperation extends ConditionalFeedOperation {
    private final DocumentId documentId;
    public RemoveFeedOperation(DocumentId documentId) {
        super(Type.REMOVE);
        this.documentId = documentId;
    }
    public RemoveFeedOperation(DocumentId documentId, TestAndSetCondition condition) {
        super(Type.REMOVE, condition);
        this.documentId = documentId;
    }

    @Override
    public DocumentId getRemove() {
        return documentId;
    }
}