public Response firmarPeticion(@PathParam("id") long idPeticion, FirmaTO firmaTO, @Context SecurityContext sc, @Context UriInfo uriInfo) {
String autentificado = null;
if (sc.getUserPrincipal()!=null)
autentificado = sc.getUserPrincipal().getName();
PeticionBO peticionBO = new PeticionBO();
long idFirma = peticionBO.firmarPeticion(idPeticion, firmaTO, autentificado);
URI uri = uriInfo.getAbsolutePathBuilder().path("{idFirma}").build(idFirma);
return Response.created(uri).build();
}
@Path("{idPeticion}/firmas/{idFirma}")