Package br.com.granja.dominio

Examples of br.com.granja.dominio.Noticia


        super(dao);
    }

    @Override
    public void validate(Noticia entity) throws ServiceBusinessException {
      Noticia entityToValidate = new Noticia();
        entityToValidate.setTitulo(entity.getTitulo());
        entityToValidate.setId(entity.getId());
        entityToValidate.setAtivo(true);
       
        ServiceUniqueEntityValidator<Noticia, NoticiaDao> uniqueEntityValidator = ServiceUniqueEntityValidator.create(dao);
        uniqueEntityValidator.validate(entityToValidate, String.format("A Noticia com o título informado (%s) já está cadastrado", entityToValidate.getTitulo()));
    }
View Full Code Here


        ServiceUniqueEntityValidator<Noticia, NoticiaDao> uniqueEntityValidator = ServiceUniqueEntityValidator.create(dao);
        uniqueEntityValidator.validate(entityToValidate, String.format("A Noticia com o título informado (%s) já está cadastrado", entityToValidate.getTitulo()));
    }

    public List<Noticia> findByAtivos(){
      Noticia i = new Noticia();
      i.setAtivo(true);
     
      return dao.findByAttributes(i,0,0,"titulo",true);
    }
View Full Code Here

TOP

Related Classes of br.com.granja.dominio.Noticia

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.