Package com.centraview.marketing.promotion

Examples of com.centraview.marketing.promotion.PromotionLocalHome.create()


  {
    PromotionVO promotionVO = null;
    try {
      InitialContext ic = CVUtility.getInitialContext();
      PromotionLocalHome home = (PromotionLocalHome)ic.lookup("local/Promotion");
      PromotionLocal remote = home.create();
      remote.setDataSource(this.dataSource);
      promotionVO = (PromotionVO)remote.getPromotion(userId, data);
    } catch (Exception e) {
      e.printStackTrace();
      return null;
View Full Code Here


  {
    String result = null;
    try {
      InitialContext ic = CVUtility.getInitialContext();
      PromotionLocalHome home = (PromotionLocalHome)ic.lookup("local/Promotion");
      PromotionLocal remote = home.create();
      remote.setDataSource(this.dataSource);
      result = (String)remote.addPromotion(userId, data);
    } catch (Exception e) {
      e.printStackTrace();
      return null;
View Full Code Here

  {
    String result = null;
    try {
      InitialContext ic = CVUtility.getInitialContext();
      PromotionLocalHome home = (PromotionLocalHome)ic.lookup("local/Promotion");
      PromotionLocal remote = home.create();
      remote.setDataSource(this.dataSource);
      result = (String)remote.deletePromotion(userId, elementID);
    } catch (CreateException ce) {
      throw new EJBException(ce);
    } catch (NamingException re) {
View Full Code Here

  {
    String result = null;
    try {
      InitialContext ic = CVUtility.getInitialContext();
      PromotionLocalHome home = (PromotionLocalHome)ic.lookup("local/Promotion");
      PromotionLocal remote = home.create();
      remote.setDataSource(this.dataSource);
      result = (String)remote.updatePromotion(userId, data);
    } catch (Exception e) {
      e.printStackTrace();
      return null;
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.