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(); }
151152153154155156157
* Creates a new GitHubService object. * * @return the pull request service */ public PullRequestService createPullRequestService() { return new PullRequestServiceImpl(); }
101102103104105106107
* Creates a new GitHubService object. * * @return the repository service */ public RepositoryService createRepositoryService() { return new RepositoryServiceImpl(); }
119120121122123124125
* Creates a new GitHubService object. * * @return the user service */ public UserService createUserService() { return new UserServiceImpl(); }