Package com.dream.domain.article

Examples of com.dream.domain.article.Article


        return ValidateUtil.isEmptyText(this.guid);
    }

    public Article toNewArticle() {
        User user = SecurityUtil.currentUser();
        return new Article(this.title, this.content, this.category, user);
    }
View Full Code Here


public class ArticleServiceImpl implements ArticleService {
    private ArticleDao articleDao;

    @Override
    public ArticleDTO loadArticleByGuid(String guid) {
        Article article = articleDao.findByGuid(Article.class, guid);
        return new ArticleDTO(article);
    }
View Full Code Here

    }

    @Override
    public void saveOrUpdate(ArticleDTO articleDTO) {
        if (articleDTO.isNew()) {
            Article article = articleDTO.toNewArticle();
            articleDao.saveOrUpdate(article);
        } else {
            Article article = articleDao.findByGuid(Article.class, articleDTO.getGuid());
            article = articleDTO.toUpdateArticle(article);
            articleDao.saveOrUpdate(article);
        }
    }
View Full Code Here

TOP

Related Classes of com.dream.domain.article.Article

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.