File tree 3 files changed +41
-19
lines changed
jans-orm/model/src/main/java/io/jans/orm/model/base
3 files changed +41
-19
lines changed Original file line number Diff line number Diff line change @@ -2945,19 +2945,19 @@ components:
2945
2945
$ref : ' #/components/schemas/AttributeValidation'
2946
2946
tooltip :
2947
2947
type : string
2948
- whitePagesCanView :
2948
+ adminCanAccess :
2949
2949
type : boolean
2950
- userCanAccess :
2950
+ adminCanView :
2951
2951
type : boolean
2952
- userCanView :
2952
+ adminCanEdit :
2953
2953
type : boolean
2954
- adminCanAccess :
2954
+ userCanAccess :
2955
2955
type : boolean
2956
- adminCanView :
2956
+ userCanView :
2957
2957
type : boolean
2958
2958
userCanEdit :
2959
2959
type : boolean
2960
- adminCanEdit :
2960
+ whitePagesCanView :
2961
2961
type : boolean
2962
2962
baseDn :
2963
2963
type : string
@@ -3386,24 +3386,24 @@ components:
3386
3386
type : array
3387
3387
items :
3388
3388
type : string
3389
- displayValue :
3390
- type : string
3391
3389
value :
3392
3390
type : string
3391
+ displayValue :
3392
+ type : string
3393
3393
LocalizedString :
3394
3394
type : object
3395
3395
properties :
3396
3396
values :
3397
3397
type : object
3398
3398
additionalProperties :
3399
3399
type : string
3400
+ value :
3401
+ type : string
3400
3402
languageTags :
3401
3403
uniqueItems : true
3402
3404
type : array
3403
3405
items :
3404
3406
type : string
3405
- value :
3406
- type : string
3407
3407
AppConfiguration :
3408
3408
type : object
3409
3409
properties :
@@ -4088,6 +4088,8 @@ components:
4088
4088
type : string
4089
4089
agamaConfiguration :
4090
4090
$ref : ' #/components/schemas/EngineConfig'
4091
+ ssaConfiguration :
4092
+ $ref : ' #/components/schemas/SsaConfiguration'
4091
4093
enabledFeatureFlags :
4092
4094
uniqueItems : true
4093
4095
type : array
@@ -4114,6 +4116,9 @@ components:
4114
4116
- METRIC
4115
4117
- STAT
4116
4118
- PAR
4119
+ - SSA
4120
+ fapi :
4121
+ type : boolean
4117
4122
allResponseTypesSupported :
4118
4123
uniqueItems : true
4119
4124
type : array
@@ -4123,8 +4128,6 @@ components:
4123
4128
- code
4124
4129
- token
4125
4130
- id_token
4126
- fapi :
4127
- type : boolean
4128
4131
AuthenticationFilter :
4129
4132
required :
4130
4133
- baseDn
@@ -4264,6 +4267,20 @@ components:
4264
4267
type : object
4265
4268
additionalProperties :
4266
4269
type : string
4270
+ SsaConfiguration :
4271
+ type : object
4272
+ properties :
4273
+ ssaEndpoint :
4274
+ type : string
4275
+ ssaCustomAttributes :
4276
+ type : array
4277
+ items :
4278
+ type : string
4279
+ ssaSigningAlg :
4280
+ type : string
4281
+ ssaExpirationInDays :
4282
+ type : integer
4283
+ format : int32
4267
4284
PersistenceConfiguration :
4268
4285
type : object
4269
4286
properties :
@@ -4339,6 +4356,7 @@ components:
4339
4356
- discovery
4340
4357
- update_token
4341
4358
- config_api_auth
4359
+ - modify_ssa_response
4342
4360
programmingLanguage :
4343
4361
type : string
4344
4362
enum :
@@ -4749,10 +4767,10 @@ components:
4749
4767
type : array
4750
4768
items :
4751
4769
type : object
4752
- displayValue :
4753
- type : string
4754
4770
value :
4755
4771
type : object
4772
+ displayValue :
4773
+ type : string
4756
4774
SessionId :
4757
4775
type : object
4758
4776
properties :
Original file line number Diff line number Diff line change @@ -225,10 +225,10 @@ components:
225
225
type : array
226
226
items :
227
227
type : object
228
- displayValue :
229
- type : string
230
228
value :
231
229
type : object
230
+ displayValue :
231
+ type : string
232
232
CustomUser :
233
233
type : object
234
234
properties :
Original file line number Diff line number Diff line change @@ -92,9 +92,13 @@ public String getDisplayValue() {
92
92
return values .get (0 ).toString ();
93
93
}
94
94
95
- StringBuilder sb = new StringBuilder (values .get (0 ).toString ());
96
- for (int i = 1 ; i < values .size (); i ++) {
97
- sb .append (", " ).append (values .get (i ).toString ());
95
+ StringBuilder sb = new StringBuilder ();
96
+ for (int i = 0 ; i < values .size (); i ++) {
97
+ if (i ==0 ) {
98
+ sb .append (values .get (i ).toString ());
99
+ }else {
100
+ sb .append (", " ).append (values .get (i ).toString ());
101
+ }
98
102
}
99
103
100
104
return sb .toString ();
You can’t perform that action at this time.
0 commit comments