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

com.dingtalk.open.app.api.UserAgent Maven / Gradle / Ivy

There is a newer version: 1.3.7
Show newest version
package com.dingtalk.open.app.api;

/**
 * @author feiyin
 * @date 2023/3/29
 */
public class UserAgent {

    private final String name = "java";
    private String version;

    private UserAgent() {

    }

    public static UserAgent getUserAgent() {
        UserAgent userAgent = new UserAgent();
        userAgent.version = UserAgent.class.getPackage().getImplementationVersion();
        return userAgent;
    }

    public String getUa() {
        return this.name + "/" + this.version;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy