package br.usp.nds.agualastro.satelites; import java.util.LinkedList; import javax.ws.rs.GET; import javax.ws.rs.Path; import javax.ws.rs.Produces; import br.usp.nds.agualastro.servico.Retorno; @Path("satelites") @Produces("text/xml") public class ServicoSatelites { @GET public Retorno listar() { return new Retorno(new LinkedList(PoolSatelites.getInstance().listar())); } }