Package com.jada.content.data

Examples of com.jada.content.data.ContactUsInfoList


  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;
  }
View Full Code Here

TOP

Related Classes of com.jada.content.data.ContactUsInfoList

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.