Examples of AssetForm


Examples of org.hoteia.qalingo.core.web.mvc.form.AssetForm

        }
        return productMarketingForm;
    }
   
    public AssetForm buildProductMarketingAssetForm(final RequestData requestData, final Asset asset) throws Exception {
        final AssetForm assetForm = new AssetForm();
        if(asset != null){
            assetForm.setId(asset.getId().toString());
            assetForm.setName(asset.getName());
            assetForm.setDescription(asset.getDescription());
            assetForm.setDefault(asset.isDefault());
            assetForm.setPath(asset.getPath());
            assetForm.setType(asset.getType());
            assetForm.setSize(asset.getSize());
        }
        return assetForm;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.