public String[] populaTags(String sessaoID, String[] tagName)
      throws SessaoIDException, LoginException, UsuarioNaoCadastradoException {
    String[] retorno = new String[3];

    for (int i = 0; i < retorno.length; i++) {
      retorno[i] = fachada.criarTag(sessaoID, tagName[i]);
    }

    return retorno;
  }