forked from nunogit/scholia-junit-selenium
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
nunogit
committed
Jul 14, 2020
1 parent
c217a5d
commit bbc91b8
Showing
6 changed files
with
96 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
src/main/java/opendata/scholia/cachepreloader/CachePreLoader.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 1,14 @@ | ||
package opendata.scholia.cachepreloader; | ||
|
||
import java.io.IOException; | ||
import java.lang.reflect.InvocationTargetException; | ||
|
||
public class CachePreLoader { | ||
|
||
public static void main(String [] args) { | ||
|
||
//URLListLoader listLoader = URLListLoader(); | ||
//List<string> URLStringList = listLoader.load(); | ||
|
||
} | ||
} |
27 changes: 27 additions & 0 deletions
27
src/main/java/opendata/scholia/cachepreloader/URLListLoader.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 1,27 @@ | ||
package opendata.scholia.cachepreloader; | ||
|
||
import java.util.List; | ||
|
||
import opendata.scholia.util.GitReader; | ||
|
||
public class URLListLoader { | ||
|
||
String sUrl; | ||
|
||
public URLListLoader() { | ||
|
||
} | ||
|
||
public void setUrl(String sUrl) { | ||
this.sUrl = sUrl; | ||
} | ||
|
||
|
||
public List<String> getList(){ | ||
GitReader gitReader = new GitReader(); | ||
gitReader.setURL(this.sUrl); | ||
gitReader.getList(); | ||
return null; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters