Project

General

Profile

1
package eu.dnetlib.data.search.web.api;
2

    
3
/**
4
 * Created by kiatrop on 16/1/2017.
5
 */
6
public class HTMLResponseFormat {
7
    public static final String response = "<table>" +
8
            "<thead><tr>" +
9
            " <th>Title</th>" +
10
            "<th>Authors</th>" +
11
            "<th>Publication Year</th>" +
12
            "<th>DOI</th>\n" +
13
            "<th>Permanent Identifier</th>" +
14
            "<th>Publication type</th>" +
15
            "<th>Journal</th>" +
16
            "<th>Project Name (GA Number)</th>" +
17
            "<th>Access Mode</th>" +
18
            "</tr>" +
19
            "</thead>" +
20
            "<tbody>%s</tbody></table>";
21
}
(3-3/8)