Package com.sparc.knappsack.models

Examples of com.sparc.knappsack.models.AppFileModel


        return imageModel;
    }

    @Override
    public AppFileModel createAppFileModel(Long appFileId) {
        AppFileModel model = null;
        AppFile appFile = get(appFileId);
        if (appFile != null) {
            model = new AppFileModel();
            model.setId(appFile.getId());
            model.setName(appFile.getName());
            model.setRelativePath(appFile.getRelativePath());
            model.setSize(appFile.getSize());
            model.setStorageType(appFile.getStorageType());
            model.setType(appFile.getType());
        }
        return model;
    }
View Full Code Here

TOP

Related Classes of com.sparc.knappsack.models.AppFileModel

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.