summaryrefslogtreecommitdiffstats
path: root/vespaclient-container-plugin/src/main/java/com/yahoo/storage/searcher/DocumentRemoveHit.java
blob: cf5dfbcffc1bae1ef36d974def6b94e9ca642d3f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright 2016 Yahoo Inc. 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;

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;
    }

}