Package br.com.syspartenon.partenon.domain

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


        this.site = site;
    }

    public Banner getBanner() {
        if(banner == null){
            banner = new Banner();
            banner.setSite(getSite());
        }
        return banner;
    }
View Full Code Here


        FacesContext context = FacesContext.getCurrentInstance();
        context.getApplication().getNavigationHandler().handleNavigation(context, null, "evento_site_banners.jsf?faces-redirect=true&id=" + site.getSitId());
    }
   
    public void handleUpload(FileUploadEvent event) {
        banner = new Banner();
        banner.setBanDescricao("");
        banner.setSite(site);
        bannerBC.insert(banner, event.getFile().getContents(), event.getFile().getFileName());
    }
View Full Code Here

TOP

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

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.