Skip to content

Commit c5a7a57

Browse files
made public property private
1 parent f1969cc commit c5a7a57

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

src/main/java/com/uid2/operator/model/IdentityEnvironment.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,16 @@
66
public enum IdentityEnvironment {
77
TEST(0), INTEG(1), PROD(2);
88

9-
public final int value;
9+
private final int value;
1010

1111
IdentityEnvironment(int value) {
1212
this.value = value;
1313
}
1414

15+
public int getValue() {
16+
return value;
17+
}
18+
1519
public static IdentityEnvironment fromValue(int value) {
1620
return switch (value) {
1721
case 0 -> TEST;

0 commit comments

Comments
 (0)