Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add POJA docs #788

Merged
merged 6 commits into from
Aug 28, 2024
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion http-poja-apache/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ dependencies {
compileOnly(mn.reactor)
compileOnly(mn.micronaut.json.core)


testImplementation(projects.micronautHttpPojaTest)
testImplementation(mnSerde.micronaut.serde.jackson)
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.micronaut.http.poja.llhttp;
package io.micronaut.http.poja.apache;

import io.micronaut.context.ApplicationContext;
import io.micronaut.core.convert.ConversionService;
Expand All @@ -22,7 +22,7 @@
import io.micronaut.http.MediaType;
import io.micronaut.http.codec.MediaTypeCodecRegistry;
import io.micronaut.http.poja.PojaHttpServerlessApplication;
import io.micronaut.http.poja.llhttp.exception.ApacheServletBadRequestException;
import io.micronaut.http.poja.apache.exception.ApacheServletBadRequestException;
import io.micronaut.http.server.exceptions.HttpServerException;
import io.micronaut.inject.qualifiers.Qualifiers;
import io.micronaut.runtime.ApplicationConfiguration;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.micronaut.http.poja.llhttp;
package io.micronaut.http.poja.apache;

import io.micronaut.context.annotation.ConfigurationProperties;
import io.micronaut.core.bind.annotation.Bindable;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.micronaut.http.poja.llhttp;
package io.micronaut.http.poja.apache;

import io.micronaut.core.annotation.Internal;
import io.micronaut.core.annotation.NonNull;
Expand All @@ -30,7 +30,7 @@
import io.micronaut.http.cookie.Cookie;
import io.micronaut.http.cookie.Cookies;
import io.micronaut.http.poja.PojaHttpRequest;
import io.micronaut.http.poja.llhttp.exception.ApacheServletBadRequestException;
import io.micronaut.http.poja.apache.exception.ApacheServletBadRequestException;
import io.micronaut.http.poja.util.MultiValueHeaders;
import io.micronaut.http.poja.util.MultiValuesQueryParameters;
import io.micronaut.http.simple.cookies.SimpleCookies;
Expand Down Expand Up @@ -88,6 +88,7 @@ public final class ApacheServletHttpRequest<B> extends PojaHttpRequest<B, Classi
* @param conversionService The conversion service
* @param codecRegistry The media codec registry
* @param ioExecutor The executor service
* @param byteBufferFactory The byte buffer factory
* @param response The response
* @param configuration The configuration
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.micronaut.http.poja.llhttp;
package io.micronaut.http.poja.apache;

import io.micronaut.core.annotation.Internal;
import io.micronaut.core.annotation.NonNull;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.micronaut.http.poja.llhttp.exception;
package io.micronaut.http.poja.apache.exception;

import io.micronaut.core.annotation.Internal;
import io.micronaut.http.server.exceptions.HttpServerException;
Expand Down

This file was deleted.

Loading
Loading