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

com.facebook.api.IFeedImage Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
package com.facebook.api;

import java.net.URL;

/**
 * Interface for an image that appears in a newsfeed/minifeed story and the 
 * destination URL for a click on that image.
 * 
 * @see IFacebookRestClient
 * @see FacebookRestClient#handleFeedImages
 */
public interface IFeedImage extends IPair {
  /**
   * The image "url" can be either:
   * 
    *
  • a URL linking to an image: this image will be * be shrunk to fit within 75x75, cached, and formatted by Facebook.
  • *
  • a Facebook photo ID
  • *
* @return the String representation of the feed image URL */ public String getImageUrlString(); /** * @return the URL to which the feed image should link */ public URL getLinkUrl(); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy