Package br.com.syspartenon.partenon.domain

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


        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

TOP

Related Classes of br.com.syspartenon.partenon.domain.Foto

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.