*/
private static CalendarEventEntry createWebContentEvent(
CalendarService service, String title, String type, String url,
String icon, String width, String height) throws ServiceException,
IOException {
WebContent wc = new WebContent();
wc.setHeight(height);
wc.setWidth(width);
wc.setTitle(title);
wc.setType(type);
wc.setUrl(url);
wc.setIcon(icon);
return createEvent(service, title, null, null, false, wc);
}