-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
renamed Crawler to ProjectileClientApi
- Loading branch information
Stefan Bley
committed
Aug 19, 2016
1 parent
e2b6589
commit ed4fe57
Showing
15 changed files
with
69 additions
and
67 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
...e/saxsys/projectiler/crawler/Booking.java → ...va/de/saxsys/projectiler/api/Booking.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
4 changes: 2 additions & 2 deletions
4
...jectiler/crawler/ConnectionException.java → .../projectiler/api/ConnectionException.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
2 changes: 1 addition & 1 deletion
2
...xsys/projectiler/crawler/Credentials.java → ...e/saxsys/projectiler/api/Credentials.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
4 changes: 2 additions & 2 deletions
4
.../crawler/InvalidCredentialsException.java → ...iler/api/InvalidCredentialsException.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
4 changes: 2 additions & 2 deletions
4
...rojectiler/crawler/NoBudgetException.java → ...ys/projectiler/api/NoBudgetException.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
4 changes: 2 additions & 2 deletions
4
...projectiler/crawler/OverlapException.java → ...sys/projectiler/api/OverlapException.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
8 changes: 4 additions & 4 deletions
8
...rojectiler/crawler/CrawlingException.java → ...ojectiler/api/ProjectileApiException.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 |
---|---|---|
@@ -1,19 +1,19 @@ | ||
package de.saxsys.projectiler.crawler; | ||
package de.saxsys.projectiler.api; | ||
|
||
/** | ||
* Exception to be thrown by Crawler implementations if there is any failure. | ||
* | ||
* @author stefan.bley | ||
*/ | ||
public class CrawlingException extends Exception { | ||
public class ProjectileApiException extends Exception { | ||
|
||
private static final long serialVersionUID = 7232508869516591946L; | ||
|
||
public CrawlingException(String message) { | ||
public ProjectileApiException(String message) { | ||
super(message); | ||
} | ||
|
||
public CrawlingException(String message, Throwable cause) { | ||
public ProjectileApiException(String message, Throwable cause) { | ||
super(message, cause); | ||
} | ||
} |
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
2 changes: 1 addition & 1 deletion
2
.../saxsys/projectiler/crawler/Settings.java → ...a/de/saxsys/projectiler/api/Settings.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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package de.saxsys.projectiler.crawler; | ||
package de.saxsys.projectiler.api; | ||
|
||
import java.util.concurrent.TimeUnit; | ||
|
||
|
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
2 changes: 1 addition & 1 deletion
2
backend/src/main/java/de/saxsys/projectiler/SystemSettings.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
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
Oops, something went wrong.