summaryrefslogtreecommitdiffstats
path: root/documentapi/src/main/java/com/yahoo/documentapi/messagebus/protocol/DocumentAcceptedReply.java
blob: 1ee67bd5608ced313efe2170040fda2ed4059a67 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.documentapi.messagebus.protocol;

/**
 * Common base class for replies that indicate that a document was routed
 * to some recipient. Does not imply that the reply contains no errors!
 */
public abstract class DocumentAcceptedReply extends DocumentReply {
    protected DocumentAcceptedReply(int type) {
        super(type);
    }
}