Package org.openfaces.event

Examples of org.openfaces.event.FileUploadStatus


    public String getBookImageFileSize() {
        Book book = Faces.var("book", Book.class);
        FileUploadItem uploadedCoverImage = book.getUploadedCoverImage();
        if (uploadedCoverImage == null) return "N/A";
        FileUploadStatus status = uploadedCoverImage.getStatus();
        switch (status) {
            case SUCCESSFUL:
                return String.valueOf(book.getBookCoverImage().getFileSize());
            case STOPPED:
                return "<Upload stopped>";
View Full Code Here

TOP

Related Classes of org.openfaces.event.FileUploadStatus

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.