Esempio n. 1
0
File: A.java Progetto: kmenzli/juzu
 @Resource
 public Response.Content.Resource resource() throws AuthenticationException {
   return Response.ok("application/octet-stream", new ByteArrayInputStream("hello".getBytes()));
 }
Esempio n. 2
0
File: A.java Progetto: kmenzli/juzu
 @View
 public Response.Content index() throws IOException {
   return Response.content(A_.resourceURL().toString());
 }
Esempio n. 3
0
File: A.java Progetto: edpzjh/juzu
 @View
 public Response.Mime index() throws IOException {
   return Response.ok(A_.actionURL().toString());
 }