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

com.netflix.archaius.instrumentation.PropertyUsageData Maven / Gradle / Ivy

There is a newer version: 2.8.3
Show newest version
package com.netflix.archaius.instrumentation;

import java.util.List;

/** Container for all usages of a specific property in a flush cycle. */
public class PropertyUsageData {
    private List propertyUsageEvents;
    public PropertyUsageData(List propertyUsageEvents) {
        this.propertyUsageEvents = propertyUsageEvents;
    }

    public List getPropertyUsageEvents() {
        return propertyUsageEvents;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy