Package vn.pyco.tinycms.model

Examples of vn.pyco.tinycms.model.Content


     */
    @SuppressWarnings("unchecked")
    @Override
    public Map<String, Object> buildContentDataMap(int contentId) {
        Map<String, Object> map = new HashMap<String, Object>();
        Content content = _contentDao.get(contentId);
        if (content == null) {
            return Collections.EMPTY_MAP;
        }
       
        map.put("_info", content);
        List<ContentData> data = content.getData();
        for (ContentData aData : data) {
            map.put(aData.getCode(), aData.getData());
        }
       
        return map;
View Full Code Here

TOP

Related Classes of vn.pyco.tinycms.model.Content

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.