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;
}