Package com.github.api.v2.services

Examples of com.github.api.v2.services.RepositoryService


   * Creates a new GitHubService object.
   *
   * @return the gist service
   */
    public GistService createGistService() {
      return new GistServiceImpl();
    }
View Full Code Here


   * Creates a new GitHubService object.
   *
   * @return the issue service
   */
    public IssueService createIssueService() {
      return new IssueServiceImpl();
    }
View Full Code Here

   * Creates a new GitHubService object.
   *
   * @return the job service
   */
    public JobService createJobService() {
      return new JobServiceImpl();     
    }
View Full Code Here

   * Creates a new GitHubService object.
   *
   * @return the network service
   */
    public NetworkService createNetworkService() {
      return new NetworkServiceImpl();
    }
View Full Code Here

   *            the secret
   *
   * @return the o auth service
   */
    public OAuthService createOAuthService(String clientId, String secret) {
      return new OAuthServiceImpl(clientId, secret);     
    }
View Full Code Here

   * Creates a new GitHubService object.
   *
   * @return the object service
   */
    public ObjectService createObjectService() {
      return new ObjectServiceImpl();
    }
View Full Code Here

   * Creates a new GitHubService object.
   *
   * @return the organization service
   */
    public OrganizationService createOrganizationService() {
      return new OrganizationServiceImpl();
    }
View Full Code Here

   * Creates a new GitHubService object.
   *
   * @return the pull request service
   */
    public PullRequestService createPullRequestService() {
      return new PullRequestServiceImpl();     
    }
View Full Code Here

   * Creates a new GitHubService object.
   *
   * @return the repository service
   */
    public RepositoryService createRepositoryService() {
      return new RepositoryServiceImpl();
    }
View Full Code Here

   * Creates a new GitHubService object.
   *
   * @return the user service
   */
    public UserService createUserService() {
      return new UserServiceImpl();
    }
View Full Code Here

TOP

Related Classes of com.github.api.v2.services.RepositoryService

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.