Arquitetura da venda embarcada (Versão ADM)

bug#13263
dev:trevezani
qua:

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Web/trunk/ventaboletos@89423 d1611594-4594-4d17-8e1d-87c2c4800839
master
alberto 2019-01-30 19:09:37 +00:00
parent 63493d03a2
commit 4f48736c25
1 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,19 @@
package com.rjconsultores.ventaboletos.rest;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;
import com.rjconsultores.ventaboletos.web.utilerias.Version;
@Path("/versao")
public class VersaoRS {
@GET
@Produces({ MediaType.APPLICATION_JSON })
public String buscarUsuarios() {
return Version.readVersion();
}
}