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

org.solovyev.android.ResolvedCaptcha Maven / Gradle / Ivy

There is a newer version: 1.1.18
Show newest version
package org.solovyev.android;

import org.jetbrains.annotations.NotNull;

/**
 * User: serso
 * Date: 5/28/12
 * Time: 11:26 PM
 */
public class ResolvedCaptcha {

    @NotNull
    private final String captchaSid;

    @NotNull
    private final String captchaKey;

    public ResolvedCaptcha(@NotNull String captchaSid, @NotNull String captchaKey) {
        this.captchaSid = captchaSid;
        this.captchaKey = captchaKey;
    }

    @NotNull
    public String getCaptchaSid() {
        return captchaSid;
    }

    @NotNull
    public String getCaptchaKey() {
        return captchaKey;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy