-
-
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.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
5 changed files
with
6 additions
and
53 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,19 +27,12 @@ | |
*/ | ||
package cloud.piranha.single; | ||
|
||
import cloud.piranha.core.api.WebApplication; | ||
import cloud.piranha.core.api.WebApplicationExtension; | ||
|
||
/** | ||
* The "Solo" WebApplicationExtension. | ||
* The "Single" WebApplicationExtension. | ||
* | ||
* @author Manfred Riem ([email protected]) | ||
*/ | ||
public class SingleExtension implements WebApplicationExtension { | ||
|
||
@Override | ||
public void configure(WebApplication webApplication) { | ||
webApplication.addServlet("Solo", SingleServlet.class); | ||
webApplication.addServletMapping("Solo", "/*"); | ||
} | ||
} |
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 |
---|---|---|
|
@@ -34,7 +34,7 @@ | |
import static java.lang.System.Logger.Level.WARNING; | ||
|
||
/** | ||
* The Solo version of PiranhaBuilder. | ||
* The Single version of PiranhaBuilder. | ||
* | ||
* @author Manfred Riem ([email protected]) | ||
*/ | ||
|
@@ -48,7 +48,7 @@ public class SinglePiranhaBuilder implements PiranhaBuilder<SinglePiranha> { | |
/** | ||
* Stores the SinglePiranha instance. | ||
*/ | ||
private SinglePiranha piranha; | ||
private final SinglePiranha piranha; | ||
|
||
/** | ||
* Stores the verbose flag. | ||
|
38 changes: 0 additions & 38 deletions
38
single/src/main/java/cloud/piranha/single/SingleServlet.java
This file was deleted.
Oops, something went wrong.