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