Skip to content

Commit

Permalink
Fixes piranhacloud#3521 - Fix JavaDoc issues for piranha-arquillian-s…
Browse files Browse the repository at this point in the history
…erver module
  • Loading branch information
mnriem committed Sep 2, 2023
1 parent 1833342 commit d7395a3
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,16 @@ public void register(ExtensionBuilder builder) {
builder.service(DeployableContainer.class, PiranhaServerDeployableContainer.class);
}

// Defines the configuration class used: PiranhaServerContainerConfiguration.class
// Defines the protocol used: "Servlet 5.0"

/**
* The Piranha DeployableContainer.
*
* <pre>
* Defines the configuration class used: PiranhaServerContainerConfiguration.class
* Defines the protocol used: "Servlet 5.0"
* </pre>
*
* @author Manfred Riem (mriem@manorrock.com)
*/
public abstract static class PiranhaServerContainerBase implements DeployableContainer<PiranhaServerContainerConfiguration> {

@Override
Expand All @@ -72,8 +79,15 @@ public ProtocolDescription getDefaultProtocol() {
}
}

// Defines the configuration class to be essentially the same as MicroConfiguration.class

/**
* The Piranha MicroConfiguration.
*
* <pre>
* Defines the configuration class to be essentially the same as MicroConfiguration.class
* </pre>
*
* @author Manfred Riem (mriem@manorrock.com)
*/
public static class PiranhaServerContainerConfiguration extends MicroConfiguration implements ContainerConfiguration {

/**
Expand Down Expand Up @@ -117,7 +131,7 @@ public void validate() throws ConfigurationException {
* Initializes configuration after all configured values were loaded.
* Computes generated configuration, e.g. a free port for autoPort
*
* @return
* @return the PiranhaServerContainerConfiguration.
*/
@Override
public PiranhaServerContainerConfiguration postConstruct() {
Expand Down
5 changes: 5 additions & 0 deletions arquillian/server/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@

import cloud.piranha.arquillian.server.PiranhaServerLoadableExtension;

/**
* The Piranha Arquillian Server module.
*
* @author Manfred Riem (mriem@manorrock.com)
*/
module cloud.piranha.arquillian.server {

provides LoadableExtension with PiranhaServerLoadableExtension;
Expand Down

0 comments on commit d7395a3

Please sign in to comment.