You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: modules/integration/tests-integration/tests-backend/src/test/java/org/wso2/identity/integration/test/rest/api/server/claim/management/v1/model/LocalClaimRes.java
+14
Original file line number
Diff line number
Diff line change
@@ -40,6 +40,7 @@ public class LocalClaimRes {
40
40
privateStringregEx = null;
41
41
privateBooleanrequired = null;
42
42
privateBooleansupportedByDefault = null;
43
+
privateBooleanmultiValued = null;
43
44
44
45
publicenumUniquenessScopeEnum {
45
46
NONE, WITHIN_USERSTORE, ACROSS_USERSTORES,
@@ -209,6 +210,19 @@ public void setSupportedByDefault(Boolean supportedByDefault) {
209
210
this.supportedByDefault = supportedByDefault;
210
211
}
211
212
213
+
/**
214
+
* Specifies if the claim can hold multiple values.
215
+
**/
216
+
@ApiModelProperty(value = "Specifies if the claim can hold multiple values.")
217
+
@JsonProperty("multiValued")
218
+
publicBooleangetMultiValued() {
219
+
returnmultiValued;
220
+
}
221
+
222
+
publicvoidsetMultiValued(BooleanmultiValued) {
223
+
this.multiValued = multiValued;
224
+
}
225
+
212
226
/**
213
227
* Specifies the scope of uniqueness validation for the claim value.
Copy file name to clipboardExpand all lines: modules/integration/tests-integration/tests-backend/src/test/java/org/wso2/identity/integration/test/scim2/SCIM2BaseTestCase.java
+2
Original file line number
Diff line number
Diff line change
@@ -42,6 +42,7 @@ public class SCIM2BaseTestCase extends ISIntegrationTest {
Copy file name to clipboardExpand all lines: modules/integration/tests-integration/tests-backend/src/test/java/org/wso2/identity/integration/test/scim2/SCIM2UserTestCase.java
0 commit comments