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

org.wiztools.oembed.OEmbedResponse Maven / Gradle / Ivy

The newest version!
package org.wiztools.oembed;

import java.io.Serializable;
import java.util.Map;

/**
 * The response interface.
 * @author subhash
 */
public interface OEmbedResponse extends Serializable {
    Map getElements();
    OEmbedVersion getVersion();
    OEmbedType getType();
    boolean isPhoto();
    boolean isVideo();
    boolean isLink();
    boolean isRich();
    int getWidth();
    int getHeight();
    String getTitle();
    String getUrl();
    String getHtml();
    String getAuthor_name();
    String getAuthor_url();
    String getProvider_name();
    String getProvider_url();
    int getCache_age();
    String getThumbnail_url();
    int getThumbnail_width();
    int getThumbnail_height();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy