Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ class FF4JResourceStepDef(ff4j: FF4j, context: WebApplicationContext) : En {
uriBuilder: UriBuilder,
path: String,
formParams: Map<String, String>
): URI? {
formParams.forEach { (name: String?, values: String?) ->
): URI {
formParams.forEach { (name: String, values: String) ->
uriBuilder.queryParam(
name,
values
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ Feature:
Then the user gets an error response with code "404" and error message as
"""
{
"type": "about:blank",
"title": "Not Found",
"status": 404,
"detail": "no security has been defined",
Expand Down Expand Up @@ -99,7 +98,6 @@ Feature:
Then the user gets an error response with code "404" and error message as
"""
{
"type": "about:blank",
"title": "Not Found",
"status": 404,
"detail": "feature not found",
Expand Down Expand Up @@ -166,7 +164,6 @@ Feature:
Then the user gets an error response with code "404" and error message as
"""
{
"type": "about:blank",
"title": "Not Found",
"status": 404,
"detail": "feature not found",
Expand Down Expand Up @@ -217,7 +214,6 @@ Feature:
Then the user gets an error response with code "400" and error message as
"""
{
"type": "about:blank",
"title": "Bad Request",
"status": 400,
"detail": "bad request",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ Feature: FeatureResource
Then the user gets an error response with code "404" and error message as
"""
{
"type": "about:blank",
"title": "Not Found",
"status": 404,
"detail": "feature not found",
Expand Down Expand Up @@ -49,7 +48,6 @@ Feature: FeatureResource
Then the user gets an error response with code "400" and error message as
"""
{
"type": "about:blank",
"title": "Bad Request",
"status": 400,
"detail": "feature uid cannot be blank",
Expand All @@ -69,7 +67,6 @@ Feature: FeatureResource
Then the user gets an error response with code "400" and error message as
"""
{
"type": "about:blank",
"title": "Bad Request",
"status": 400,
"detail": "feature uid did not match with the requested feature uid to be created or updated",
Expand Down Expand Up @@ -186,7 +183,6 @@ Feature: FeatureResource
Then the user gets an error response with code "400" and error message as
"""
{
"type": "about:blank",
"title": "Bad Request",
"status": 400,
"detail": "flipping strategy specified wrongly",
Expand Down Expand Up @@ -233,7 +229,6 @@ Feature: FeatureResource
Then the user gets an error response with code "400" and error message as
"""
{
"type": "about:blank",
"title": "Bad Request",
"status": 400,
"detail": "properties specified wrongly",
Expand Down Expand Up @@ -265,7 +260,6 @@ Feature: FeatureResource
Then the user gets an error response with code "404" and error message as
"""
{
"type": "about:blank",
"title": "Not Found",
"status": 404,
"detail": "feature not found",
Expand All @@ -279,7 +273,6 @@ Feature: FeatureResource
Then the user gets an error response with code "404" and error message as
"""
{
"type": "about:blank",
"title": "Not Found",
"status": 404,
"detail": "feature not found",
Expand Down Expand Up @@ -312,7 +305,6 @@ Feature: FeatureResource
Then the user gets an error response with code "404" and error message as
"""
{
"type": "about:blank",
"title": "Not Found",
"status": 404,
"detail": "feature not found",
Expand Down Expand Up @@ -345,7 +337,6 @@ Feature: FeatureResource
Then the user gets an error response with code "404" and error message as
"""
{
"type": "about:blank",
"title": "Not Found",
"status": 404,
"detail": "feature not found",
Expand All @@ -360,7 +351,6 @@ Feature: FeatureResource
Then the user gets an error response with code "404" and error message as
"""
{
"type": "about:blank",
"title": "Not Found",
"status": 404,
"detail": "feature not found",
Expand Down Expand Up @@ -395,7 +385,6 @@ Feature: FeatureResource
Then the user gets an error response with code "304" and error message as
"""
{
"type": "about:blank",
"title": "Not Modified",
"status": 304,
"detail": "role already exists",
Expand All @@ -421,7 +410,6 @@ Feature: FeatureResource
Then the user gets an error response with code "404" and error message as
"""
{
"type": "about:blank",
"title": "Not Found",
"status": 404,
"detail": "feature not found",
Expand Down Expand Up @@ -456,7 +444,6 @@ Feature: FeatureResource
Then the user gets an error response with code "404" and error message as
"""
{
"type": "about:blank",
"title": "Not Found",
"status": 404,
"detail": "role does not exist",
Expand All @@ -482,7 +469,6 @@ Feature: FeatureResource
Then the user gets an error response with code "404" and error message as
"""
{
"type": "about:blank",
"title": "Not Found",
"status": 404,
"detail": "feature not found",
Expand All @@ -498,7 +484,6 @@ Feature: FeatureResource
Then the user gets an error response with code "304" and error message as
"""
{
"type": "about:blank",
"title": "Not Modified",
"status": 304,
"detail": "group already exists",
Expand Down Expand Up @@ -543,7 +528,6 @@ Feature: FeatureResource
Then the user gets an error response with code "404" and error message as
"""
{
"type": "about:blank",
"title": "Not Found",
"status": 404,
"detail": "feature not found",
Expand Down Expand Up @@ -578,7 +562,6 @@ Feature: FeatureResource
Then the user gets an error response with code "404" and error message as
"""
{
"type": "about:blank",
"title": "Not Found",
"status": 404,
"detail": "group does not exist",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,6 @@ Feature: FeatureStoreResource
Then the user gets an error response with code "404" and error message as
"""
{
"type": "about:blank",
"title": "Not Found",
"status": 404,
"detail": "feature store is not cached",
Expand Down Expand Up @@ -194,7 +193,6 @@ Feature: FeatureStoreResource
Then the user gets an error response with code "404" and error message as
"""
{
"type": "about:blank",
"title": "Not Found",
"status": 404,
"detail": "feature store is not cached",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ Feature:
Then the user gets an error response with code "404" and error message as
"""
{
"type": "about:blank",
"title": "Not Found",
"status": 404,
"detail": "group does not exist",
Expand Down Expand Up @@ -87,7 +86,6 @@ Feature:
Then the user gets an error response with code "404" and error message as
"""
{
"type": "about:blank",
"title": "Not Found",
"status": 404,
"detail": "group does not exist",
Expand Down Expand Up @@ -123,7 +121,6 @@ Feature:
Then the user gets an error response with code "404" and error message as
"""
{
"type": "about:blank",
"title": "Not Found",
"status": 404,
"detail": "group does not exist",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ Feature:
Then the user gets an error response with code "404" and error message as
"""
{
"type": "about:blank",
"title": "Not Found",
"status": 404,
"detail": "property not found",
Expand Down Expand Up @@ -81,7 +80,6 @@ Feature:
Then the user gets an error response with code "400" and error message as
"""
{
"type": "about:blank",
"title": "Bad Request",
"status": 400,
"detail": "property name cannot be blank",
Expand All @@ -103,7 +101,6 @@ Feature:
Then the user gets an error response with code "400" and error message as
"""
{
"type": "about:blank",
"title": "Bad Request",
"status": 400,
"detail": "property name did not match with the requested property name to be created or updated",
Expand Down Expand Up @@ -144,7 +141,6 @@ Feature:
Then the user gets an error response with code "404" and error message as
"""
{
"type": "about:blank",
"title": "Not Found",
"status": 404,
"detail": "property not found",
Expand All @@ -157,7 +153,6 @@ Feature:
Then the user gets an error response with code "404" and error message as
"""
{
"type": "about:blank",
"title": "Not Found",
"status": 404,
"detail": "property not found",
Expand Down Expand Up @@ -186,7 +181,6 @@ Feature:
Then the user gets an error response with code "404" and error message as
"""
{
"type": "about:blank",
"title": "Not Found",
"status": 404,
"detail": "property not found",
Expand All @@ -199,7 +193,6 @@ Feature:
Then the user gets an error response with code "400" and error message as
"""
{
"type": "about:blank",
"title": "Bad Request",
"status": 400,
"detail": "bad request",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,6 @@ Feature:
Then the user gets an error response with code "404" and error message as
"""
{
"type": "about:blank",
"title": "Not Found",
"status": 404,
"detail": "property store is not cached",
Expand Down Expand Up @@ -144,7 +143,6 @@ Feature:
Then the user gets an error response with code "404" and error message as
"""
{
"type": "about:blank",
"title": "Not Found",
"status": 404,
"detail": "property store is not cached",
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>21</java.version>
<spring-boot.version>3.5.7</spring-boot.version>
<spring-boot.version>4.0.0</spring-boot.version>
<ff4j.version>2.1</ff4j.version>
<jackson-module-kotlin.version>2.20.1</jackson-module-kotlin.version>
<kotlin.version>2.2.21</kotlin.version>
Expand Down