public SyndicationInfo[] getSyndications() throws ResourceNotFoundException, ParseErrorException, Exception {
return api.getSyndication();
}
public ContactUsInfoList getContactUs() throws ResourceNotFoundException, ParseErrorException, Exception {
ContactUsInfoList contactUsInfoList = new ContactUsInfoList();
ContactUsInfo[] contactUsInfo = api.getContactUs();
contactUsInfoList.setContactUsInfos(contactUsInfo);
String message = request.getParameter("message");
String messageText = "";
if (message != null) {
messageText = this.getLanguage(message);
}
contactUsInfoList.setMessageText(messageText);
return contactUsInfoList;
}