if (this.repositoryName == null || this.repositoryName.isEmpty()
|| this.repositoryOwnerLogin == null || this.repositoryOwnerLogin.isEmpty()) {
throw new RuntimeException("Informe o nome e login do repositorio desejado, ou a URL para a página do GitHub.");
}
Repository gitRepository = new RepositoryService(AuthServices.getGitHubClient()).getRepository(this.repositoryOwnerLogin, this.repositoryName);
System.err.println("Repositório: " + gitRepository.getName() + " | " + gitRepository.getOwner().getLogin() + " | " + gitRepository.getCreatedAt() + " | " + gitRepository.getHtmlUrl());
repository = RepositoryServices.createEntity(gitRepository, dao, true);
JsfUtil.addSuccessMessage("Repositorio salvo com sucesso.");
} catch (Exception e) {