Package ecar.pojo

Examples of ecar.pojo.SisTipoExibicGrupoSteg


   * @throws ECARException
   */
  public void salvar(SisAtributoSatb sisAtributo) throws ECARException {
   
    //Objeto utilizado apenas para testar se � igual.
    SisTipoExibicGrupoSteg tipoGrupo = new SisTipoExibicGrupoSteg();
   
    tipoGrupo.setCodSteg(Long.parseLong(SisTipoExibicGrupoDao.VALIDACAO));
   
   
      if (sisAtributo.getSisGrupoAtributoSga().getSisTipoExibicGrupoSteg() != null && sisAtributo.getSisGrupoAtributoSga().getSisTipoExibicGrupoSteg().equals(tipoGrupo)) { 
        if (sisAtributo.getSisGrupoAtributoSga().getSisAtributoSatbs().size() > Integer.parseInt(ConstantesECAR.ZERO)){
          throw new ECARException("sisAtributo.salvar.erro.grupo.maximo.um");
View Full Code Here


         * @throws ECARException
   */
  public void alterar(SisAtributoSatb sisAtributoBean) throws ECARException {
   
    //Objeto utilizado apenas para testar se � igual.
    SisTipoExibicGrupoSteg tipoGrupo = new SisTipoExibicGrupoSteg();
   
    tipoGrupo.setCodSteg(Long.parseLong(SisTipoExibicGrupoDao.VALIDACAO));
   
   
      if (sisAtributoBean.getSisGrupoAtributoSga().getSisTipoExibicGrupoSteg() != null && sisAtributoBean.getSisGrupoAtributoSga().getSisTipoExibicGrupoSteg().equals(tipoGrupo)) { 
        if (sisAtributoBean.getSisGrupoAtributoSga().getSisAtributoSatbs().size() > Integer.parseInt(ConstantesECAR.UM)){
          throw new ECARException("sisAtributo.salvar.erro.grupo.maximo.um");
View Full Code Here

TOP

Related Classes of ecar.pojo.SisTipoExibicGrupoSteg

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.