Class IssueLinkParser

java.lang.Object
edu.handong.csee.isel.bfc.collector.github.IssueLinkParser

public class IssueLinkParser
extends java.lang.Object
입력된 Github Repository의 특정 Label의 Issue page Link를 수집하는 서비스를 제공한다.
Provides a service that collects the issue page link of a specific label of the entered Github Repository.
  • Field Summary

    Fields 
    Modifier and Type Field Description
    static java.util.ArrayList<java.lang.String> issueAddress  
  • Constructor Summary

    Constructors 
    Constructor Description
    IssueLinkParser()  
  • Method Summary

    Modifier and Type Method Description
    static java.util.ArrayList<java.lang.String> getIssueAddress()  
    void parseIssueAddress​(java.lang.String address, java.lang.String label)
    입력된 Github Repository의 Label이 입력된 label이고, 상태가 Closed인 issue link를 가져온다.
    The input label of the Github Repository is the input label, and the issue link with a status of Closed is brought.

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • issueAddress

      public static java.util.ArrayList<java.lang.String> issueAddress
  • Constructor Details

  • Method Details

    • parseIssueAddress

      public void parseIssueAddress​(java.lang.String address, java.lang.String label) throws java.io.IOException
      입력된 Github Repository의 Label이 입력된 label이고, 상태가 Closed인 issue link를 가져온다.
      The input label of the Github Repository is the input label, and the issue link with a status of Closed is brought.
      Parameters:
      address - the Github Repository URL.
      label - an issue label managed by Github.
      Throws:
      java.io.IOException
    • getIssueAddress

      public static java.util.ArrayList<java.lang.String> getIssueAddress()
      Returns:
      Returns the Issue Link url list.