public static String agregarLink(String id, String nombre, String link, String tipo) { detalleAnime form = new detalleAnime(); int idUsr = animeDAO.addLink(id, nombre, link, tipo); //hay usuarios if (idUsr != 0) { return("true"); } //no hay usuarios else { return("false"); } }