summaryrefslogtreecommitdiffstats
path: root/documentapi/src/main/java/com/yahoo/documentapi/messagebus/protocol/GetBucketListMessage.java
blob: 74629018e556ac5a8535cc0eeac877dbdc4d35d7 (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
36
37
38
39
40
// 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;

import com.yahoo.document.BucketId;

public class GetBucketListMessage extends DocumentMessage {

    private BucketId bucketId;

    GetBucketListMessage() {
        // must be deserialized into
    }

    public GetBucketListMessage(BucketId bucketId) {
        this.bucketId = bucketId;
    }

    public BucketId getBucketId() {
        return bucketId;
    }

    void setBucketId(BucketId id) {
        bucketId = id;
    }

    @Override
    public DocumentReply createReply() {
        return new StatBucketReply();
    }

    @Override
    public int getApproxSize() {
        return super.getApproxSize() + 8;
    }

    @Override
    public int getType() {
        return DocumentProtocol.MESSAGE_GETBUCKETLIST;
    }
}