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

com.yoti.api.client.Media Maven / Gradle / Ivy

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

/**
 * Represents media with some mimeType
 *
 */
public interface Media {

    /**
     * Get mime type of the content
     *
     * @return mime type
     */
    String getMimeType();

    /**
     * Media content
     *
     * @return media as byte[]
     */
    byte[] getContent();

    /**
     * Base64 encoded media content
     *
     * @return media as Base64 encoded String
     */
    String getBase64Content();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy