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

com.launchdarkly.sdk.server.interfaces.WrapperInfo Maven / Gradle / Ivy

There is a newer version: 7.6.0
Show newest version
package com.launchdarkly.sdk.server.interfaces;

/**
 * Contains wrapper SDK information.
 * 

* This is intended for use within the SDK. */ final public class WrapperInfo { private final String wrapperName; private final String wrapperVersion; /** * Get the name of the wrapper. * * @return the wrapper name */ public String getWrapperName() { return wrapperName; } /** * Get the version of the wrapper. * * @return the wrapper version */ public String getWrapperVersion() { return wrapperVersion; } /** * Used internally by the SDK to track wrapper information. * * @param wrapperName the name of the wrapper * @param wrapperVersion the version of the wrapper */ public WrapperInfo(String wrapperName, String wrapperVersion) { this.wrapperName = wrapperName; this.wrapperVersion = wrapperVersion; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy