Example usage for org.apache.commons.collections4.map AbstractMapDecorator subclass-usage

List of usage examples for org.apache.commons.collections4.map AbstractMapDecorator subclass-usage

Introduction

In this page you can find the example usage for org.apache.commons.collections4.map AbstractMapDecorator subclass-usage.

Usage

From source file org.apache.metron.elasticsearch.config.ElasticsearchClientConfig.java

/**
 * Access configuration options for the ES client.
 */
public class ElasticsearchClientConfig extends AbstractMapDecorator<String, Object> {

    private static final Integer THIRTY_SECONDS_IN_MILLIS = 30_000;

From source file org.apache.metron.elasticsearch.utils.FieldMapping.java

/**
 * Typedef that maps Elasticsearch index name to properties.
 */
public class FieldMapping extends AbstractMapDecorator<String, FieldProperties> {
    public FieldMapping() {
        super(new HashMap<String, FieldProperties>());

From source file org.apache.metron.elasticsearch.utils.FieldProperties.java

/**
 * Typedef that maps Elasticsearch field names to types.
 */
public class FieldProperties extends AbstractMapDecorator<String, Object> {
    public FieldProperties() {
        super(new HashMap<>());

From source file org.apache.metron.pcap.config.PcapConfig.java

public class PcapConfig extends AbstractMapDecorator<String, Object> {

    public interface PrefixStrategy extends Function<Clock, String> {
    }

    private boolean showHelp;

From source file org.apache.metron.rest.model.pcap.PcapRequest.java

public abstract class PcapRequest extends AbstractMapDecorator<String, Object> {

    public PcapRequest() {
        super(new HashMap<>());
        setStartTimeMs(0L);
        setEndTimeMs(System.currentTimeMillis());