use of org.nextprot.api.web.seo.domain.SeoTags in project nextprot-api by calipho-sib.
the class SeoTagsServiceImpl method getOneNewsSeoTags.
private SeoTags getOneNewsSeoTags(NextProtNews news) {
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
String shortDate = sdf.format(news.getPublicationDate());
String title = "News - " + news.getTitle();
String h1 = "News - " + shortDate;
String descr = "News - " + news.getTitle();
return new SeoTags(title, descr, h1);
}
Aggregations