/** * Retrieves representation of an instance of Servico.WSRestObjetos * * @return an instance of java.lang.String */ @GET @Path("ListaContato") @Produces(MediaType.TEXT_HTML) public String getXmlContatos() { int i; String html, dsContato; List<Contato> contatos = new ArrayList<>(); contatos = DB.listaContatos(); html = "<h1>Lista de Contatos</h1>" + "<ul>"; for (i = 0; i < contatos.size(); i++) { Contato c = contatos.get(i); dsContato = "<b>Cod: " + c.getCodigo() + " </b><br>" + "<b>Nome: </b>" + c.getNome() + " <br>" + "<b>Mail: </b>" + c.getEmail() + " <br>" + "<b>Fone: </b>" + c.getTelefone() + " <br><br>"; html += "<li>" + dsContato + "</li>"; } html += "</ul>"; return html; }