Package pl.zgora.uz.wmie.fe.ajax.action

Source Code of pl.zgora.uz.wmie.fe.ajax.action.DzialAjaxAction

package pl.zgora.uz.wmie.fe.ajax.action;

import java.util.Iterator;
import java.util.Map;

import javax.servlet.ServletContext;

import org.directwebremoting.ScriptSession;
import org.directwebremoting.ServerContext;
import org.directwebremoting.ServerContextFactory;
import org.directwebremoting.WebContext;
import org.directwebremoting.WebContextFactory;
import org.directwebremoting.proxy.ScriptProxy;

import pl.zgora.uz.wmie.fe.bean.FilterBean;
import pl.zgora.uz.wmie.fe.service.DzialService;
import pl.zgora.uz.wmie.fe.dto.FormAjaxResponse;
import pl.zgora.uz.wmie.fe.hbm.classes.Dzial;
import pl.zgora.uz.wmie.fe.util.BusinessUtil;

public class DzialAjaxAction {
  public String deleteDzialy(Integer id){
    try {
    DzialService dzialService = (DzialService) BusinessUtil.findBusiness("DzialService");
      dzialService.deleteById(id);
    } catch (Exception e) {
      e.printStackTrace();
      return e.getCause().getMessage();
    }
    return "";
  }
 
}
TOP

Related Classes of pl.zgora.uz.wmie.fe.ajax.action.DzialAjaxAction

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.