Package org.wicketstuff.facebook

Examples of org.wicketstuff.facebook.FacebookSdk


  /**
   *
   */
  public EdgeEventPage()
  {
    add(new FacebookSdk("fb-root"));
    add(new LikeButton("likeButton", Model.of("http://localhost/")));

    final Model<String> responseModel = new Model<String>();
    final Label responseLabel = new Label("response", responseModel);
    responseLabel.setOutputMarkupId(true);
View Full Code Here


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

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

   */
  private static final long serialVersionUID = 1L;

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

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

  /**
   *
   */
  public LoginEventPage()
  {
    add(new FacebookSdk("fb-root", "149850315074596"));
    add(new LoginButton("loginButton", FacebookPermission.user_about_me,
      FacebookPermission.friends_about_me));

    final Model<String> responseModel = new Model<String>();
    final MultiLineLabel responseLabel = new MultiLineLabel("response", responseModel);
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.