Skip to content

Commit 7650bbf

Browse files
committed
refactor: making ofrep request dto immutable
Signed-off-by: Rahul Baradol <rahul.baradol.14@gmail.com>
1 parent 4fa2c70 commit 7650bbf

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • providers/ofrep/src/main/java/dev/openfeature/contrib/providers/ofrep/internal
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
package dev.openfeature.contrib.providers.ofrep.internal;
22

33
import com.google.common.collect.ImmutableMap;
4-
import lombok.Data;
4+
import lombok.Value;
55

66
/**
77
* Represents the request body for the OFREP API request.
88
*/
9-
@Data
9+
@Value
1010
public class OfrepRequest {
11-
private final ImmutableMap<String, Object> context;
11+
ImmutableMap<String, Object> context;
1212
}

0 commit comments

Comments
 (0)