comparison src/main/java/de/mpiwg/itgroup/annotations/restlet/AnnotatorInfo.java @ 2:f2d44c41eedf

nothing much
author casties
date Thu, 28 Jun 2012 19:34:32 +0200
parents 6556943c4fb9
children aafa3884b2c4
comparison
equal deleted inserted replaced
1:6556943c4fb9 2:f2d44c41eedf
39 39
40 40
41 41
42 @Get("html") 42 @Get("html")
43 public Representation getHTML(){ 43 public Representation getHTML(){
44 InputStream is = getClass().getResourceAsStream("/de/mpiwg/itgroup/annotationManager/staticPages/main.html"); 44 InputStream is = getClass().getResourceAsStream("/de/mpiwg/itgroup/annotations/annotator-info.html");
45 45
46 Representation rep = new InputRepresentation(is,MediaType.TEXT_HTML); 46 Representation rep = new InputRepresentation(is,MediaType.TEXT_HTML);
47 return rep; 47 return rep;
48 48
49 } 49 }