String title = params.getString( "title", "" );
String link = params.getString( "link", "" );
String description = params.getString( "description", "" );
//create the JCM item
Item item = new Item();
item.setTopic( topic );
item.setTitle( title );
item.setLink( link );
item.setDescription( description );
Content content = null;
try {
content = this.getContentMarkup( this.getURL( provider ) ).getContent();