aboutsummaryrefslogtreecommitdiffstats
path: root/documentapi/src/main/java/com/yahoo/documentapi/messagebus/protocol/GetBucketListMessage.java
blob: a67bea3c53ead28b7b5a999d39e32e0c3c6fbcf4 (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
// 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;

import com.yahoo.document.BucketId;
import com.yahoo.document.FixedBucketSpaces;

public class GetBucketListMessage extends DocumentMessage {

    private BucketId bucketId;
    private String bucketSpace = FixedBucketSpaces.defaultSpace();

    GetBucketListMessage() {
        // must be deserialized into
    }

    public GetBucketListMessage(BucketId bucketId) {
        this(bucketId, FixedBucketSpaces.defaultSpace());
    }

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

    public BucketId getBucketId() {
        return bucketId;
    }

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

    public String getBucketSpace() {
        return bucketSpace;
    }

    public void setBucketSpace(String bucketSpace) {
        this.bucketSpace = bucketSpace;
    }

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

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

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