All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.elasticsearch.xpack.core.security.support.MetadataUtils Maven / Gradle / Ivy

/*
 * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
 * or more contributor license agreements. Licensed under the Elastic License
 * 2.0; you may not use this file except in compliance with the Elastic License
 * 2.0.
 */
package org.elasticsearch.xpack.core.security.support;

import org.elasticsearch.common.collect.MapBuilder;

import java.util.Collections;
import java.util.Map;

public class MetadataUtils {

    public static final String RESERVED_PREFIX = "_";
    public static final String RESERVED_METADATA_KEY = RESERVED_PREFIX + "reserved";
    public static final String DEPRECATED_METADATA_KEY = RESERVED_PREFIX + "deprecated";
    public static final String DEPRECATED_REASON_METADATA_KEY = RESERVED_PREFIX + "deprecated_reason";
    public static final Map DEFAULT_RESERVED_METADATA = Collections.singletonMap(RESERVED_METADATA_KEY, true);

    private MetadataUtils() {
    }

    public static boolean containsReservedMetadata(Map metadata) {
        for (String key : metadata.keySet()) {
            if (key.startsWith(RESERVED_PREFIX)) {
                return true;
            }
        }
        return false;
    }

    public static Map getDeprecatedReservedMetadata(String reason) {
        return MapBuilder.newMapBuilder()
            .put(RESERVED_METADATA_KEY, true)
            .put(DEPRECATED_METADATA_KEY, true)
            .put(DEPRECATED_REASON_METADATA_KEY, reason)
            .immutableMap();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy