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

com.hp.autonomy.searchcomponents.hod.authentication.HavenSearchUserMetadata Maven / Gradle / Ivy

package com.hp.autonomy.searchcomponents.hod.authentication;

import com.google.common.collect.ImmutableMap;

import java.io.Serializable;
import java.util.Map;

@SuppressWarnings("WeakerAccess")
public interface HavenSearchUserMetadata {
    String LEGACY_USER_DISPLAY_NAME = "HAVEN_SEARCH_ONDEMAND_USERNAME";
    String USER_DISPLAY_NAME = "DisplayName";

    @SuppressWarnings("unused")
    Map> METADATA_TYPES = ImmutableMap.>builder()
            .put(LEGACY_USER_DISPLAY_NAME, String.class)
            .put(USER_DISPLAY_NAME, String.class)
            .build();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy