-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[SDKS-7538] Add flag sets in Init Config
- Loading branch information
1 parent
0d3a832
commit 8532a5a
Showing
10 changed files
with
217 additions
and
126 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
client/src/main/java/io/split/inputValidation/FSValidatorResult.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package io.split.inputValidation; | ||
|
||
import java.util.HashSet; | ||
|
||
public class FSValidatorResult { | ||
private final HashSet<String> _flagSets; | ||
private final int _invalidSets; | ||
|
||
public FSValidatorResult(HashSet<String> flagSets, Integer invalidSets) { | ||
_flagSets = flagSets; | ||
_invalidSets = invalidSets; | ||
} | ||
|
||
public HashSet<String> getFlagSets() { | ||
return _flagSets; | ||
} | ||
|
||
public int getInvalidSets() { | ||
return _invalidSets; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.