org.springframework.social.facebook.api
Interface FitnessActions

All Known Implementing Classes:
FitnessActionsTemplate

public interface FitnessActions

Defines operations for publishing OpenGraph actions pertaining to fitness. Many OpenGraph operations require approval from Facebook. See https://developers.facebook.com/docs/opengraph/submission-process for details.


Method Summary
 String bikes(String courseUrl)
          Publishes a "fitness.bikes" action for the OpenGraph course object at the given URL.
 String bikes(String courseUrl, ActionMetadata metadata)
          Publishes a "fitness.bikes" action for the OpenGraph course object at the given URL.
 String runs(String courseUrl)
          Publishes a "fitness.runs" action for the OpenGraph course object at the given URL.
 String runs(String courseUrl, ActionMetadata metadata)
          Publishes a "fitness.runs" action for the OpenGraph course object at the given URL.
 String walks(String courseUrl)
          Publishes a "fitness.walks" action for the OpenGraph course object at the given URL.
 String walks(String courseUrl, ActionMetadata metadata)
          Publishes a "fitness.walks" action for the OpenGraph course object at the given URL.
 

Method Detail

runs

String runs(String courseUrl)
Publishes a "fitness.runs" action for the OpenGraph course object at the given URL.

Parameters:
courseUrl - The URL of the course that was run. Must reference an OpenGraph object of type "fitness.course".
Returns:
The ID for the action created.

runs

String runs(String courseUrl,
            ActionMetadata metadata)
Publishes a "fitness.runs" action for the OpenGraph course object at the given URL.

Parameters:
courseUrl - The URL of the course that was run. Must reference an OpenGraph object of type "fitness.course".
metadata - Action metadata to be applied to the action.
Returns:
The ID for the action created.

walks

String walks(String courseUrl)
Publishes a "fitness.walks" action for the OpenGraph course object at the given URL.

Parameters:
courseUrl - The URL of the course that was walked. Must reference an OpenGraph object of type "fitness.course".
Returns:
The ID for the action created.

walks

String walks(String courseUrl,
             ActionMetadata metadata)
Publishes a "fitness.walks" action for the OpenGraph course object at the given URL.

Parameters:
courseUrl - The URL of the course that was walked. Must reference an OpenGraph object of type "fitness.course".
metadata - Action metadata to be applied to the action.
Returns:
The ID for the action created.

bikes

String bikes(String courseUrl)
Publishes a "fitness.bikes" action for the OpenGraph course object at the given URL.

Parameters:
courseUrl - The URL of the course that was biked. Must reference an OpenGraph object of type "fitness.course".
Returns:
The ID for the action created.

bikes

String bikes(String courseUrl,
             ActionMetadata metadata)
Publishes a "fitness.bikes" action for the OpenGraph course object at the given URL.

Parameters:
courseUrl - The URL of the course that was biked. Must reference an OpenGraph object of type "fitness.course".
metadata - Action metadata to be applied to the action.
Returns:
The ID for the action created.