it.cnr.contab.config00.bp.CRUDConfigParametriUoBP 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 .
*/
/*
* Created on Sep 15, 2005
*
* To change the template for this generated file go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
package it.cnr.contab.config00.bp;
import java.rmi.RemoteException;
import it.cnr.contab.config00.bulk.Parametri_uoBulk;
import it.cnr.contab.config00.ejb.Parametri_uoComponentSession;
import it.cnr.contab.config00.sto.bulk.Unita_organizzativaBulk;
import it.cnr.contab.utenze00.bp.CNRUserContext;
import it.cnr.jada.DetailedRuntimeException;
import it.cnr.jada.UserContext;
import it.cnr.jada.action.ActionContext;
import it.cnr.jada.action.BusinessProcessException;
import it.cnr.jada.comp.ComponentException;
public class CRUDConfigParametriUoBP extends it.cnr.jada.util.action.SimpleCRUDBP {
/**
* Primo costruttore della classe CRUDConfigParametriUoBP.
*/
public CRUDConfigParametriUoBP() {
super();
}
/**
* Secondo costruttore della classe CRUDConfigParametriUoBP.
* @param String function
*/
public CRUDConfigParametriUoBP(String function) {
super(function);
}
protected void initialize(ActionContext actioncontext) throws BusinessProcessException {
super.initialize(actioncontext);
Parametri_uoComponentSession sessione = (Parametri_uoComponentSession) createComponentSession();
try {
Parametri_uoBulk parUoBulk = sessione.getParametriUo(actioncontext.getUserContext(), CNRUserContext.getEsercizio(actioncontext.getUserContext()), new Unita_organizzativaBulk(CNRUserContext.getCd_unita_organizzativa(actioncontext.getUserContext())));
if (parUoBulk != null)
this.setModel(actioncontext, parUoBulk);
this.setStatus(it.cnr.jada.util.action.FormController.EDIT);
} catch (DetailedRuntimeException e) {
throw handleException(e);
} catch (ComponentException e) {
throw handleException(e);
} catch (RemoteException e) {
throw handleException(e);
}
}
public boolean isFlGestioneModuliEnabled(UserContext userContext, Parametri_uoBulk parUo) throws it.cnr.jada.action.BusinessProcessException {
try {
Parametri_uoComponentSession sessione = (Parametri_uoComponentSession) createComponentSession();
return sessione.isFlGestioneModuliEnabled(userContext, parUo);
} catch (BusinessProcessException e) {
throw handleException(e);
} catch (DetailedRuntimeException e) {
throw handleException(e);
} catch (ComponentException e) {
throw handleException(e);
} catch (RemoteException e) {
throw handleException(e);
}
}
public boolean isSearchButtonHidden() {
return true;
}
public boolean isFreeSearchButtonHidden() {
return true;
}
public boolean isNewButtonHidden() {
return true;
}
} © 2015 - 2025 Weber Informatics LLC | Privacy Policy