Examples of Foto


Examples of br.com.syspartenon.partenon.domain.Foto

        this.galeria = galeria;
    }

    public Foto getFoto() {
        if(foto == null){
            foto = new Foto();
            foto.setGaleria(getGaleria());
        }
        return foto;
    }
View Full Code Here

Examples of br.com.syspartenon.partenon.domain.Foto

        FacesContext context = FacesContext.getCurrentInstance();
        context.getApplication().getNavigationHandler().handleNavigation(context, null, "evento_site_galerias.jsf?faces-redirect=true&id=" + galeria.getSite().getEvento().getEvtId());
    }
   
    public void handleUpload(FileUploadEvent event) {
        foto = new Foto();
        foto.setFotDescricao("");
        foto.setGaleria(galeria);
        fotoBC.insert(foto, event.getFile().getContents(), event.getFile().getFileName());
    }
View Full Code Here

Examples of fing.satode.dominio.Foto

  }

  public void borrarFotos(Long idParcela, ArrayList<Foto> fotosAEliminar) {
    Parcela parcela= (Parcela)sess().get(Parcela.class,idParcela);
    for(Foto f : fotosAEliminar){
      Foto fs=null;
      for(Foto fi:parcela.getFotos()){
        if(fi.getId().equals(f.getId())){
          fs=fi;
          break;
        }
View Full Code Here

Examples of fing.satode.dominio.Foto


  public void borrarFotos(Long idParcela, ArrayList<FotoDTO> fotosBorradas) {
    ArrayList<Foto> fotosAEliminar = new ArrayList<Foto>();
    for(FotoDTO dto : fotosBorradas){
      Foto foto = new Foto(dto);
      fotosAEliminar.add(foto);
    }
    PropiedadesSiniestradasDAO.getInstance().borrarFotos( idParcela, fotosAEliminar);
   
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.