Package org.wicketstuff.facebook

Examples of org.wicketstuff.facebook.FacebookSdk


  /**
   *
   */
  public SendButtonPage()
  {
    add(new FacebookSdk("fb-root"));

    // fb doesn't like localhost
    add(new SendButton("sendButton", Model.of("http://wicketstuff.org")));
  }
View Full Code Here


  /**
   *
   */
  public LikeBoxPage()
  {
    add(new FacebookSdk("fb-root"));

    add(new LikeBox("likebox",
      Model.of("https://www.facebook.com/apps/application.php?id=142662635778399")));
  }
View Full Code Here

  /**
   *
   */
  public CommentPage()
  {
    add(new FacebookSdk("fb-root"));

    add(new Comments(
      "comments",
      Model.of("http://localhost:8080/wicket/bookmarkable/org.wicketstuff.facebook.plugins.CommentPage")));
  }
View Full Code Here

  /**
   *
   */
  public FacepilePage()
  {
    add(new FacebookSdk("fb-root"));

    add(new Facepile("facepile", Model.of("http://localhost/")));
  }
View Full Code Here

  /**
   *
   */
  public AjaxLikeBoxPage()
  {
    add(new FacebookSdk("fb-root"));

    final Model<String> urlModel = new Model<String>();

    final Form<Void> form = new Form<Void>("form");
    final TextField<String> textField = new TextField<String>("urlInput", urlModel);
View Full Code Here

   */
  private static final long serialVersionUID = 1L;

  public ActivityFeedPage()
  {
    add(new FacebookSdk("fb-root"));

    add(new ActivityFeed("feed", Model.of("localhost")));
  }
View Full Code Here

  /**
   *
   */
  public LoginButtonPage()
  {
    add(new FacebookSdk("fb-root", "142662635778399"));

    add(new LoginButton("loginButton", FacebookPermission.user_events));
  }
View Full Code Here

   */
  private static final long serialVersionUID = 1L;

  public LiveStreamPage()
  {
    add(new FacebookSdk("fb-root", "142662635778399"));

    add(new LiveStream("stream", "142662635778399"));
  }
View Full Code Here

  /**
   *
   */
  public LikeButtonPage()
  {
    add(new FacebookSdk("fb-root"));

    // URL is needed because Facebook doesn't like localhost
    final IModel<String> url = Model.of("http://wicketstuff.org");

    final LikeButton likeButton = new LikeButton("likeButton", url);
View Full Code Here

  /**
   *
   */
  public CommentEventPage()
  {
    add(new FacebookSdk("fb-root"));
    add(new Comments(
      "comments",
      Model.of("http://localhost:8080/wicket/bookmarkable/org.wicketstuff.facebook.plugins.CommentPage")));

    final Model<String> responseModel = new Model<String>();
View Full Code Here

TOP

Related Classes of org.wicketstuff.facebook.FacebookSdk

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.