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

it.cnr.contab.docamm00.bp.CRUDCategoriaGruppoInventBP 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.docamm00.bp;


/**
 * 
 */

import it.cnr.contab.anagraf00.core.bulk.*;
import it.cnr.contab.anagraf00.tabrif.bulk.*;
import it.cnr.contab.config00.sto.bulk.Ass_uo_areaBulk;
import it.cnr.contab.docamm00.docs.bulk.*;
import it.cnr.contab.docamm00.ejb.*;
import it.cnr.contab.docamm00.tabrif.bulk.Categoria_gruppo_voceBulk;
import it.cnr.jada.action.*;
import it.cnr.jada.bulk.*;
import it.cnr.jada.util.*;
import it.cnr.jada.util.action.*;
/**
 * Gestisce le catene di elementi correlate con la fattura passiva in uso.
 */
public class CRUDCategoriaGruppoInventBP extends SimpleCRUDBP {
	private SimpleDetailCRUDController crudAssociazioneVoci = new SimpleDetailCRUDController( "associazioneVoci", Categoria_gruppo_voceBulk.class, "associazioneVoci", this);
 
 
public SimpleDetailCRUDController getCrudAssociazioneVoci() {
		return crudAssociazioneVoci;
	}

	public void setCrudAssociazioneVoci(
			SimpleDetailCRUDController crudAssociazioneVoci) {
		this.crudAssociazioneVoci = crudAssociazioneVoci;
	}

public CRUDCategoriaGruppoInventBP() {
	super();
}

public CRUDCategoriaGruppoInventBP(String function) throws BusinessProcessException{
	super(function);
}

/**
 * 
 * 
 *
 * @param context	L'ActionContext della richiesta
 * @return 
 * @throws ComponentException	
 */
public RemoteBulkTree getCategoriaGruppoInventTree(ActionContext context) throws it.cnr.jada.comp.ComponentException{
  return
  
	new RemoteBulkTree() {
	  public RemoteIterator getChildren(ActionContext context, OggettoBulk bulk) throws java.rmi.RemoteException {
		try{
		  RemoteIterator ri = ((CategoriaGruppoInventComponentSession)createComponentSession()).getChildren(context.getUserContext(),bulk);
		  return it.cnr.jada.util.ejb.EJBCommonServices.openRemoteIterator(context, ri);
		}catch(it.cnr.jada.comp.ComponentException ex){
			throw new java.rmi.RemoteException("Component Exception",ex);
		}catch(it.cnr.jada.action.BusinessProcessException ex){
			throw new java.rmi.RemoteException("BusinessProcess Exception",ex);
		}

	  }

	  public OggettoBulk getParent(ActionContext context, OggettoBulk bulk) throws java.rmi.RemoteException {
		try{
		  return ((CategoriaGruppoInventComponentSession)createComponentSession()).getParent(context.getUserContext(),bulk);
		}catch(it.cnr.jada.comp.ComponentException ex){
			throw new java.rmi.RemoteException("Component Exception",ex);
		}catch(it.cnr.jada.action.BusinessProcessException ex){
			throw new java.rmi.RemoteException("BusinessProcess Exception",ex);
		}
	  }

	  public boolean isLeaf(ActionContext context, OggettoBulk bulk) throws java.rmi.RemoteException {
		try{
		  return ((CategoriaGruppoInventComponentSession)createComponentSession()).isLeaf(context.getUserContext(),bulk);
  		}catch(it.cnr.jada.comp.ComponentException ex){
			throw new java.rmi.RemoteException("Component Exception",ex);
		}catch(it.cnr.jada.action.BusinessProcessException ex){
			throw new java.rmi.RemoteException("BusinessProcess Exception",ex);
		}
	  }
	};
}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy