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

com.launchdarkly.client.VersionedData Maven / Gradle / Ivy

There is a newer version: 4.61
Show newest version
package com.launchdarkly.client;

/**
 * Common interface for string-keyed, versioned objects that can be kept in a {@link FeatureStore}.
 * @since 3.0.0
 */
public interface VersionedData {
  String getKey();
  int getVersion();
  boolean isDeleted();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy