Introducing Spring Social Slideshare
This post is a guest post by community member Tadaya Tsuyukubo (@ttddyy), creator of the Spring Social Slideshare project. Thanks Tadaya! I'd like to see more of these guest posts, so - as usual - don't hesitate to ping me! -Josh
Spring Social Slideshare is one of the community modules in Spring Social ecosystem. It is a Java binding built on top of the Spring Social framework to interact with the SlideShare REST API.
Spring Social modules provide an implementation of the ApiBinding
interface that binds Java interfaces and concrete implementation classes to a REST API. By convention, an interface is named as target service, e.g. GitHub
, LinkedIn
, Facebook
, etc. The implementation class is of the form *Template
, e.g.: GitHubTemplate
, LinkedInTemplate
, and FacebookTemplate.
In Spring Social Slideshare, there is a Slideshare
interface and SlideshareTemplate
implementation class. You can use spring to inject the SlideshareTemplate
to your service. Or, if you choose to, you can directly instantiate …