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

com.yandex.money.api.net.DefaultUserAgent Maven / Gradle / Ivy

Go to download

This Java library contains classes that allows you to do payments using Yandex.Money public API.

The newest version!
package com.yandex.money.api.net;

import com.yandex.money.api.utils.Strings;

/**
 *  Default implementation of {@link com.yandex.money.api.net.UserAgent} interface.
 */
public class DefaultUserAgent implements UserAgent {

    private final String platform;

    public DefaultUserAgent(String platform) {
        if (Strings.isNullOrEmpty(platform)) {
            throw new IllegalArgumentException("platform is null or empty");
        }
        this.platform = platform;
    }

    @Override
    public String getName() {
        return "Yandex.Money.SDK/" + platform;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy