291292293294295296297
* the url format * * @return the git hub api url builder */ protected GitHubApiUrlBuilder createGitHubApiUrlBuilder(String urlFormat) { return new GitHubApiUrlBuilder(urlFormat); }
56575859606162
* Creates a new GitHubService object. * * @return the commit service */ public CommitService createCommitService() { return new CommitServiceImpl(); }
142143144145146147148
* Creates a new GitHubService object. * * @return the feed service */ public FeedService createFeedService() { return new FeedServiceImpl(); }
65666768697071
* Creates a new GitHubService object. * * @return the gist service */ public GistService createGistService() { return new GistServiceImpl(); }
74757677787980
* Creates a new GitHubService object. * * @return the issue service */ public IssueService createIssueService() { return new IssueServiceImpl(); }
160161162163164165166
* Creates a new GitHubService object. * * @return the job service */ public JobService createJobService() { return new JobServiceImpl(); }
83848586878889
* Creates a new GitHubService object. * * @return the network service */ public NetworkService createNetworkService() { return new NetworkServiceImpl(); }
133134135136137138139
* the secret * * @return the o auth service */ public OAuthService createOAuthService(String clientId, String secret) { return new OAuthServiceImpl(clientId, secret); }
92939495969798
* Creates a new GitHubService object. * * @return the object service */ public ObjectService createObjectService() { return new ObjectServiceImpl(); }
110111112113114115116
* Creates a new GitHubService object. * * @return the organization service */ public OrganizationService createOrganizationService() { return new OrganizationServiceImpl(); }