-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MServer ZDF Crawler verbessert. closed #31 closed #32 closed #39 closed #48 closed #51 closed #52 closed #54
- Loading branch information
Showing
45 changed files
with
1,659 additions
and
679 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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package mServer.crawler.sender; | ||
|
||
/** | ||
* Loads the config Details. | ||
*/ | ||
public class ConfigReader | ||
{ | ||
|
||
//TODO | ||
} |
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,8 @@ | ||
package mServer.crawler.sender; | ||
|
||
|
||
public class CrawlerConfig | ||
{ | ||
|
||
//TODO POJO which hols all needed codfigs. | ||
} |
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,28 @@ | ||
package mServer.crawler.sender; | ||
|
||
import mServer.crawler.sender.newsearch.Qualities; | ||
|
||
import java.net.URI; | ||
import java.util.Map; | ||
import java.util.concurrent.ConcurrentHashMap; | ||
|
||
/** | ||
* Represents a found film. | ||
*/ | ||
public class Film | ||
{ | ||
private Map<Qualities,URI> urls; | ||
|
||
public Film() | ||
{ | ||
urls = new ConcurrentHashMap<>(); | ||
} | ||
|
||
public void addUrl(Qualities aQuality, URI aUrl) | ||
{ | ||
if(aQuality != null && aUrl != null) | ||
{ | ||
urls.put(aQuality,aUrl); | ||
} | ||
} | ||
} |
Oops, something went wrong.