io.github.mngsk.devicedetector.client.browser.BrowserEngine Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of device-detector Show documentation
Show all versions of device-detector Show documentation
The Universal Device Detection library that parses User Agents and detects devices (desktop, tablet, mobile, tv, cars, console, etc.), clients (browsers, feed readers, media players, PIMs, ...), operating systems, brands and models.
package io.github.mngsk.devicedetector.client.browser;
import java.util.Map;
import com.fasterxml.jackson.annotation.JsonProperty;
public class BrowserEngine {
@JsonProperty("default")
private String defaultValue;
private Map versions;
public String getDefaultValue() {
return this.defaultValue;
}
public void setDefaultValue(String defaultValue) {
this.defaultValue = defaultValue;
}
public Map getVersions() {
return this.versions;
}
public void setVersions(Map versions) {
this.versions = versions;
}
}