All Downloads are FREE. Search and download functionalities are using the official Maven repository.

it.cnr.contab.compensi00.bp.EstrazioneCUDBP Maven / Gradle / Ivy

/*
 * Copyright (C) 2019  Consiglio Nazionale delle Ricerche
 *
 *     This program is free software: you can redistribute it and/or modify
 *     it under the terms of the GNU Affero General Public License as
 *     published by the Free Software Foundation, either version 3 of the
 *     License, or (at your option) any later version.
 *
 *     This program is distributed in the hope that it will be useful,
 *     but WITHOUT ANY WARRANTY; without even the implied warranty of
 *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *     GNU Affero General Public License for more details.
 *
 *     You should have received a copy of the GNU Affero General Public License
 *     along with this program.  If not, see .
 */

package it.cnr.contab.compensi00.bp;

import it.cnr.contab.compensi00.ejb.*;
import it.cnr.contab.compensi00.docs.bulk.*;
import it.cnr.jada.action.*;
import it.cnr.jada.comp.*;
import it.cnr.jada.util.action.*;
/**
 * Insert the type's description here.
 * Creation date: (02/02/2004 12.32.44)
 * @author: Gennaro Borriello
 */
public class EstrazioneCUDBP extends AbstractEstrazioneFiscaleBP {
/**
 * EstrazioneCUDBP constructor comment.
 */
public EstrazioneCUDBP() {
	super();
}
/**
 * EstrazioneCUDBP constructor comment.
 * @param function java.lang.String
 */
public EstrazioneCUDBP(String function) {
	super(function);
}
protected it.cnr.jada.util.jsp.Button[] createToolbar() {

	it.cnr.jada.util.jsp.Button[] toolbar = new it.cnr.jada.util.jsp.Button[1];
	int i = 0;

	toolbar[i++] = new it.cnr.jada.util.jsp.Button(it.cnr.jada.util.Config.getHandler().getProperties(getClass()),"CRUDToolbar.extractCUD");

	return toolbar;
}
public void doElaboraCUD(ActionContext context) throws BusinessProcessException {

	try{

		EstrazioneCUDBulk cud = (EstrazioneCUDBulk)getModel();

		CompensoComponentSession sess = (CompensoComponentSession)createComponentSession();
		sess.doElaboraCUD(context.getUserContext(), cud);


	}catch(javax.ejb.EJBException e){
		throw handleException(e);
	} catch(java.rmi.RemoteException re){
		throw handleException(re);
	} catch(ComponentException ce){
		throw handleException(ce);
	}

	
}
protected void init(Config config,ActionContext context) throws BusinessProcessException {

	try {
		EstrazioneCUDBulk cud = new EstrazioneCUDBulk();
		cud.setAnagrafico(new it.cnr.contab.anagraf00.core.bulk.AnagraficoBulk());
		cud.setEsercizio(it.cnr.contab.utenze00.bp.CNRUserContext.getEsercizio(context.getUserContext()));

		
		setModel(context, cud);
	} catch(Throwable e) {
		throw handleException(e);
	}
	
	super.init(config,context);
}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy