it.cnr.contab.config00.action.RicercaGAEFEAction 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.config00.action;
import it.cnr.contab.config00.bp.RicercaGAEFEBP;
import it.cnr.contab.config00.util.Constants;
import it.cnr.contab.utenze00.bp.CNRUserContext;
import it.cnr.contab.utenze00.bulk.CNRUserInfo;
import it.cnr.contab.utenze00.bulk.UtenteBulk;
import it.cnr.jada.action.AbstractAction;
import it.cnr.jada.action.ActionContext;
import it.cnr.jada.action.Forward;
import it.cnr.jada.action.HttpActionContext;
import it.cnr.jada.util.Introspector;
import java.beans.IntrospectionException;
import java.lang.reflect.InvocationTargetException;
import java.rmi.RemoteException;
import java.text.ParseException;
public class RicercaGAEFEAction extends AbstractAction {
public RicercaGAEFEAction() {
super();
}
public Forward doDefault(ActionContext actioncontext) throws RemoteException {
RicercaGAEFEBP bp = null;
try {
bp = (RicercaGAEFEBP)actioncontext.createBusinessProcess("RicercaGAEFEBP");
bp.setUser("MACRO");
actioncontext.setBusinessProcess(bp);
valorizzaParametri(actioncontext,bp,"cdr");
valorizzaParametri(actioncontext,bp,"modulo");
valorizzaParametri(actioncontext,bp,"user");
bp.eseguiRicerca(actioncontext);
} catch (Exception e) {
bp.setCodiceErrore(Constants.ERRORE_SIP_100);
}
return actioncontext.findDefaultForward();
}
private void valorizzaParametri(ActionContext actioncontext,RicercaGAEFEBP bp,String parametro) throws IntrospectionException, InvocationTargetException, ParseException{
String valore = ((HttpActionContext)actioncontext).getParameter(parametro);
if (valore != null && !valore.trim().equals(""))
Introspector.setPropertyValue(bp,parametro,valore);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy