Package ecar.pojo

Examples of ecar.pojo.AcompRefItemLimitesArliPK


    /**
     * @param limite
     */
    private void setPKAcompReferenciaItemLimite(AcompRefItemLimitesArli limite) {
        AcompRefItemLimitesArliPK pk = new AcompRefItemLimitesArliPK();
        pk.setCodAri(limite.getAcompReferenciaItemAri().getCodAri());
        pk.setCodTpfa(limite.getTipoFuncAcompTpfa().getCodTpfa());
        limite.setComp_id(pk);
    }
View Full Code Here


     * @throws ECARException
     */
    public AcompRefItemLimitesArli getAcompRefItemLimitesByAcompReferenciaItemTipoFuncAcomp(
                                      TipoFuncAcompTpfa funcAcomp,
                                      AcompReferenciaItemAri acompanhamento) throws ECARException{
        AcompRefItemLimitesArliPK pk = new AcompRefItemLimitesArliPK();
        pk.setCodAri(acompanhamento.getCodAri());
        pk.setCodTpfa(funcAcomp.getCodTpfa());
        try{
            AcompRefItemLimitesArli acomp = (AcompRefItemLimitesArli) this.buscar(AcompRefItemLimitesArli.class, pk);
            return acomp;
        } catch (ECARException e){
          this.logger.error(e);
View Full Code Here

TOP

Related Classes of ecar.pojo.AcompRefItemLimitesArliPK

Copyright © 2018 www.massapicom. 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.