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

org.bardframework.commons.captcha.GeneratedCaptcha Maven / Gradle / Ivy

The newest version!
package org.bardframework.commons.captcha;

import lombok.Getter;

@Getter
public class GeneratedCaptcha {
    private final String value;
    private final byte[] image;

    public GeneratedCaptcha(String value, byte[] image) {
        this.value = value;
        this.image = image;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy