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

com.yoti.api.client.spi.remote.JpegAttributeValue Maven / Gradle / Ivy

The newest version!
package com.yoti.api.client.spi.remote;

/**
 * Attribute value holding a JPEG image.
 *
 */
public final class JpegAttributeValue extends ImageAttributeValue {

    private static final String MIME_TYPE = "image/jpeg";

    private final byte[] content;

    public JpegAttributeValue(byte[] content) {
        this.content = content;
    }

    @Override
    public String getMimeType() {
        return MIME_TYPE;
    }

    @Override
    public byte[] getContent() {
        return content.clone();
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy