aboutsummaryrefslogtreecommitdiffstats
path: root/vespaclient-container-plugin/src/main/java/com/yahoo/storage/searcher/DocumentRemoveHit.java
blob: 73363e68e2b9670b8856d01cb74f209cfae32702 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.storage.searcher;

import com.yahoo.document.DocumentId;
import com.yahoo.search.result.Hit;

@Deprecated // OK
// TODO: Remove on Vespa 7
public class DocumentRemoveHit extends Hit {

    private final DocumentId idOfRemovedDoc;

    public DocumentRemoveHit(DocumentId idOfRemovedDoc) {
        super(idOfRemovedDoc.toString());
        this.idOfRemovedDoc = idOfRemovedDoc;
        setField("documentid", idOfRemovedDoc.toString());
    }

    public DocumentId getIdOfRemovedDoc() {
        return idOfRemovedDoc;
    }

}