aboutsummaryrefslogtreecommitdiffstats
path: root/document/src/main/java/com/yahoo/document/FixedBucketSpaces.java
blob: e20affb80b0ce7409f536196457fea26d3fb4012 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.document;

/**
 * Minimal repository of bucket spaces hard coded for default and global distributions.
 *
 * @author geirst
 */
public class FixedBucketSpaces {
    public static String defaultSpace() {
        return "default";
    }
    public static String globalSpace() {
        return "global";
    }
}