Package com.github.api.v2.schema

Examples of com.github.api.v2.schema.Feed


   *            the url format
   *
   * @return the git hub api url builder
   */
  protected GitHubApiUrlBuilder createGitHubApiUrlBuilder(String urlFormat) {
    return new GitHubApiUrlBuilder(urlFormat);
  }
View Full Code Here


   * Creates a new GitHubService object.
   *
   * @return the commit service
   */
    public CommitService createCommitService() {
      return new CommitServiceImpl();
    }
View Full Code Here

   * Creates a new GitHubService object.
   *
   * @return the feed service
   */
    public FeedService createFeedService() {
      return new FeedServiceImpl();     
    }
View Full Code Here

   * 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

TOP

Related Classes of com.github.api.v2.schema.Feed

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.