aboutsummaryrefslogtreecommitdiffstats
path: root/documentapi/src/main/java/com/yahoo/documentapi/messagebus/protocol/UpdateDocumentReply.java
blob: 088d06625dc699cf70e4e443d879d08a3b8192ed (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
24
25
26
27
28
29
30
31
32
33
34
35
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.documentapi.messagebus.protocol;

/**
 * @author Simon Thoresen Hult
 */
public class UpdateDocumentReply extends WriteDocumentReply {

    private boolean found = true;

    /**
     * Constructs a new reply with no content.
     */
    public UpdateDocumentReply() {
        super(DocumentProtocol.REPLY_UPDATEDOCUMENT);
    }

    /**
     * Returns whether or not the document was found and updated.
     *
     * @return true if document was found
     */
    public boolean wasFound() {
        return found;
    }

    /**
     * Sets whether or not the document was found and updated.
     *
     * @param found True if the document was found
     */
    public void setWasFound(boolean found) {
        this.found = found;
    }
}