Cross Reference: /forgerock/openam/openam-core/src/main/resources/amConsole.properties
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
#
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
#
# Copyright (c) 2007 Sun Microsystems Inc. All Rights Reserved
#
# The contents of this file are subject to the terms
# of the Common Development and Distribution License
# (the License). You may not use this file except in
# compliance with the License.
#
# You can obtain a copy of the License at
# https://opensso.dev.java.net/public/CDDLv1.0.html or
# opensso/legal/CDDLv1.0.txt
# See the License for the specific language governing
# permission and limitations under the License.
#
# When distributing Covered Code, include this CDDL
# Header Notice in each file and include the License file
# at opensso/legal/CDDLv1.0.txt.
# If applicable, add the following below the CDDL Header,
# with the fields enclosed by brackets [] replaced by
# your own identifying information:
# "Portions Copyrighted [year] [name of copyright owner]"
#
# $Id: amConsole.properties,v 1.170 2010/01/08 20:47:17 babysunil Exp $
#
# Portions Copyrighted 2011-2016 ForgeRock AS.
# Portions Copyrighted 2012 Open Source Solution Technology Corporation
# Portions Copyrighted 2013-2016 Nomura Research Institute, Ltd.
webconsole.title=OpenAM
#####
#
# "Back to <page>" button labels
#
#####
back.button=Back to {0}
policy.back.button=Policy
previous.view=previous view
################################################################################
#
# COMMON
#
################################################################################
masthead.logoutTooltip=Log out of OpenAM
masthead.logoutStatus=Log out of OpenAM
masthead.logoutMessage=Log out of the OpenAM?\\nYou might need to close any associated windows.
button.new=New...
button.cancel=Cancel
button.create=Create
button.add=Add...
button.delete=Delete
button.reset=Reset
button.save=Save
button.select=Select
button.search=Search
button.next=Next
button.back=Back
button.finish=Finish
button.duplicate=Duplicate
button.ok=OK
button.close=Close
button.assign=Assign
button.configure=Configure
button.validate=Start Test
button.refresh=Refresh
button.register=Register
button.edit=Edit
link.edit=Edit...
link.duplicate=Duplicate...
label.items=Item(s)
label.active=Active
label.inactive=Inactive
label.edit=Edit
label.name=Name
label.Enable=Enabled
label.Yes=Yes
label.No=No
label.location=Location
label.current.value=Current Values
label.new.value=New Value
label.Signed=Signed
label.validate=Validate
label.upload=Upload
i18nTrue=Enabled
i18nFalse=Disabled
i18nOn=On
i18nOff=Off
help.inSeconds=In seconds
help.title=OpenAM Help
addremove.orderable.list.add.button=Add
addremove.orderable.list.delete.button=Delete
maplist.key.label=Map Key
maplist.value.label=Corresponding Map Value
maplist.msg.invalid.entry=Invalid Map Entry, e.g. []=some values, [key]= and []= are not allowed.
maplist.msg.invalid.key=Invalid key e.g. [ and ] characters are not allowed.
maplist.msg.invalid.value=Invalid Value e.g. [ and ] characters are not allowed.
maplist.msg.invalid.nokey=Key is required.
message.input.error=Invalid or Missing Input
message.error=Error
message.warning=Warning
message.information=Information
message.question=Question
message.updated=Profile was updated.
message.profile.modified=Profile has been modified. Click the Save button to save the changes.
message.sizelimit.exceeded=Size limit Exceeded. Refine your search to locate more entries.
message.timelimit.exceeded=Time limit Exceeded. Refine your search to locate more entries.
message.missing.name=The name is missing or empty.
message.delete.entries=The selected entries were removed.
message.validation.success=Validation successful.
subconfig.section.header=Secondary Configuration Instance
subconfig.table.column.name=Name
subconfig.table.column.type=Type
services.subconfig.table.title=Instances
services.subconfig.table.empty.message=There are no configuration instances.
schemaType.global=Global Attributes
schemaType.organization=Realm Attributes
schemaType.dynamic=Dynamic Attributes
schemaType.user=User Attributes
legend.required=Indicates Required Field
password.confirm.label={0} (confirm)
authenticated.message=You're logged in.
false=No
true=Yes
parentagepath.root=root
propertysheet.no.attributes.message=There are no attributes.
admin_suffix.name=Administrator
no.properties=There is no information to display for this entry.
no.entries.match.filter=There are no entries which match the search filter.
no.entries.selected=No entries were selected.
unsupported.operation=This operation is not available.
needs.to.be.integer={0} needs to be an integer.
invalid.url.message=Invalid URL.
uncaughtException.message=An error occurred while processing this request. Contact your administrator.
################################################################################
#
# CONSOLE PROFILE
#
################################################################################
page.title.console.properties=Adminstration Console Properties
console.properties.global.label=Global
console.properties.organization.label=Organization
console.agent.container=Default Agent Container
console.onlineHelpDocs=Online Help Documents
console.maxItemsPerPage=Paging Size
console.externalAttrFetch=External Attribute Fetch
console.enableAttrFetch=enabled
console.jspDirectoryName=JSP Directory Name
console.searchProperties=Search Parameters
console.search.timeout=Search Timeout Value
console.search.limit=Number of results returned
console.save.ok=The Administration Console Properties were updated.
console.noproperties.message=The Administration Console properties could not be retrieved.
password-mismatched=Password and password confirmation values mismatched.
invalid-date.message=Invalid Date, {0}.
################################################################################
#
# Bread Crumbs
#
################################################################################
breadcrumbs.addrealm=New Realm
breadcrumbs.editRealm=Realm - {0}
breadcrumbs.realms=Access Control
breadcrumbs.policies=Policies
breadcrumbs.addPolicy=New Policy
breadcrumbs.editPolicy=Policy - {0}
breadcrumbs.addReferralPolicy=New Referral
breadcrumbs.selectServiceType=New Rule
breadcrumbs.selectReferralType=Select Referral Type
breadcrumbs.selectSubjectType=New Subject
breadcrumbs.selectConditionType=New Condition
breadcrumbs.selectResponseProviderType=New Response Provider
breadcrumbs.addRule=New Rule
breadcrumbs.editRule=Rule - {0}
breadcrumbs.addSubject=New Subject
breadcrumbs.editSubject=Subject - {0}
breadcrumbs.addCondition=New Condition
breadcrumbs.editCondition=Condition - {0}
breadcrumbs.addResponseProvider=Add Response Provider
breadcrumbs.editResponseProvider=Response Provider - {0}
breadcrumbs.addReferral=New Referral
breadcrumbs.editReferral=Edit Referral - {0}
breadcrumbs.realm.services.selectService=Add Service
breadcrumbs.realm.services.addService=Add Service
breadcrumbs.realm.services.editService=Service - {0}
breadcrumbs.auth.newInstance=New Instance
breadcrumbs.auth.newConfiguration=New Authentication Chain
breadcrumbs.auth.editInstance=Authentication Instance - {0}
breadcrumbs.auth.editConfiguration=Authentication Chain - {0}
breadcrumbs.auth.advanced.properties=Authentication - Advanced Properties
breadcrumbs.realm.idrepo.selectIdRepo=Select Type of Data Store
breadcrumbs.realm.idrepo.addIdRepo=Add Data Store
breadcrumbs.realm.idrepo.editIdRepo=Data Store - {0}
breadcrumbs.realm.pivilege.editPrivilege=Privilege - {0}
breadcrumbs.addentities=Add Subject
breadcrumbs.editentities=Subject - {0}
breadcrumbs.editentities.addservice=Add Service
breadcrumbs.editentities.editservice=Service - {0}
breadcrumbs.editentities.selectservice=Add Service
breadcrumbs.authentication=Authentication
breadcrumbs.authentication.edit=Module - {0}
breadcrumbs.services.config=Service Configuration
breadcrumbs.services.edit=Service - {0}
breadcrumbs.services.subconfig.add=Add Sub Configuration
breadcrumbs.services.subconfig.edit=Edit Sub Configuration
breadcrumbs.services.subschema.select=Select Sub Schema
breadcrumbs.services.policy=Policy Configuration
breadcrumbs.services.policy.resource.comparator.add=Add Resource Comparator
breadcrumbs.services.policy.resource.comparator.edit=Edit Resource Comparator
breadcrumbs.idm.services.editService=Service - {0}
################################################################################
#
# Home Page
#
################################################################################
page.title.common.tasks=Welcome to the OpenAM Administration Console
page.title.common.tasks.section.SAML2=Configure SAMLv2 Provider
page.title.common.tasks.section.createFedlet=Create Fedlet Configuration
page.title.common.tasks.section.validateSAMLv2=Test Federation Connectivity
page.title.common.tasks.section.documentation=Get Product Documentation
page.title.common.tasks.section.product=Register This Product
page.title.common.tasks.section.soapSTSDeployment=Create a Soap STS Deployment
page.title.common.tasks.section.desc.SAML2=Use these work flows to create hosted or remote identity and service providers for SAMLv2 Federation.
page.title.common.tasks.section.desc.createFedlet=Create a Fedlet configuration to enable federation between an identity provider hosted on this instance of OpenAM and a remote service provider that does not have a federation solution. Before beginning, a hosted identity provider must be configured.
page.title.common.tasks.section.desc.validateSAMLv2=Use this automated test to determine if federation connections are being made successfully, or to identify where issues might be located.
page.title.common.tasks.section.desc.documentation=Launch the OpenAM product documentation page.
page.title.common.tasks.section.desc.product=Register this OpenAM product.
page.title.common.tasks.section.desc.soapSTSDeployment=Create a Soap STS .war file specific to a given realm and Soap STS agent.
################################################################################
#
# Policy Config Service Page
#
################################################################################
page.title.policy.properties=Policy Configuration Properties
policy.noproperties.message=The Policy configuration properties could not be retrieved.
policy.save.ok=The Policy Configuration Properties were updated.
policy.properties.section.title.LDAPInformation=LDAP Connection
policy.properties.section.title.LDAPSubjectInformation=LDAP Subject Information
policy.properties.section.title.availableObjects=Available Object Types
policy.properties.section.title.miscellaneous=Miscellaneous
policy.service.table.resource.comparator.title=Resource Comparator
policy.service.table.resource.comparator.name=Name
policy.service.table.resource.comparator.noentries=There are no comparators.
policy.service.table.resource.comparator.action=Action
policy.service.table.resource.comparator.add.button=Add ...
policy.service.table.resource.comparator.delete.button=Delete
policy.service.table.resource.comparator.action.edit.label=Edit
policy.service.table.resource.comparator.help=List of resource comparators for each policy service
policy.service.table.resource.comparator.help.txt=Services that define policy attributes can have a custom resource comparator. \
Resource comparators are used to determine if the resource name (eg: a URL) in the resource matches the resource name defined in the \
policy.<br/><br/>\
<i>NB </i>If a service does not define a specific resource comparator then the default of <code>PrefixResourceName</code> is used.
################################################################################
#
# AUTHENTICATION PROFILE
#
################################################################################
page.title.authentication.properties={0} Authentication Module Properties
page.title.authentication=Authentication Modules
authentication.save.ok=The authentication chain properties were updated.
authentication.profile.updated=The authentication properties were updated.
authentication.noproperties.message=The authentication property values could not be retrieved for this entry.
table.auth.module.name=Name
table.auth.module.action=Action
table.auth.module.edit=Edit
table.authenticationTypes.title=Authentication Module
table.authTypes.summary=Authentication Module
table.authTypes.empty.message=There are no authentication module
label.authTypes=Authentication Types
label.generalProperties=General Properties
jump.title.coreServices=Jump to Core Service
jump.title.authTypes=Jump To Authentication Types
jump.title.topPage=Jump to Top of Page
label.backToTop=Back to top
label.generalProperties.sub.title=General Properties
label.authModules.sub.title=Authentication Module
auth.module.save.clicked=Save was clicked.
authentication.instance.list.empty=There are no Instances available to add to this Configuration.
authentication.instance.invalids={0} are invalid.
authentication.instance.invalid={0} is invalid.
################################################################################
#
# COMPONENT
#
################################################################################
editableList.deleteButtonLabel=Remove
editableList.addButtonLabel=Add
################################################################################
#
# MASTHEAD
#
################################################################################
masthead.link.title.version=Display Product Version
masthead.text.version=Version
masthead.text.searchall=Search All
masthead.button.search=Search All
masthead.text.search.button=Search Button
masthead.link.title.logout=Log Out
masthead.text.logout=Log Out
masthead.link.title.help=Display Help for This Page
masthead.text.help=Help
masthead.image.alt.brand=OpenAM
masthead.image.alt.product=OpenAM
masthead.text.user=User
masthead.text.server=Server
masthead.image.alt.sunlogo=Sun Microsystems Inc.
masthead.button.help.status=Display Help for This Page (Opens a New Window)
masthead.button.help.tooltip=Display Help for This Page (Opens a New Window)
masthead.button.help.tooltip.debug=Help Target - {0}
tab.common.label = Common Tasks
tab.common.tooltip=Click to go to Common Tasks
tab.common.status=Click to go to Common Tasks
tab.dm.label=Directory Management
tab.dm.tooltip=Click to configure Directory Management
tab.dm.status=Click to configure Directory Management
tab.realm.label=Realms
tab.realm.tooltip=Click to configure realms
tab.realm.status=Click to configure realms
tab.sub.realm.label=Realms
tab.sub.realm.tooltip=Click to go to Realms
tab.sub.realm.status=Click to go to Realms
tab.sub.policy.label=Policies
tab.sub.policy.tooltip=Click to go to Policies
tab.sub.policy.status=Click to go to Policies
tab.sub.subjects.label=Subjects
tab.sub.subjects.tooltip=Click to go to Subjects
tab.sub.subjects.status=Click to go to Subjects
tab.session.label=Sessions
tab.session.tooltip=Click to go to Sessions
tab.session.status=Click to go to Sessions
tab.configuration.label=Configuration
tab.configuration.tooltip=Click to go to Configuration
tab.configuration.status=Click to go to Configuration
tab.configuration.service.label=Services
tab.configuration.service.tooltip=Click to go to Service Configuration
tab.configuration.service.status=Click to go to Service Configuration
tab.configuration.service.auth.label=Authentication
tab.configuration.service.auth.tooltip=Click to go to Authentication Service Configuration
tab.configuration.service.auth.status=Click to go to Authentication Service Configuration
tab.configuration.service.console.label=Console
tab.configuration.service.console.tooltip=Click to go to Console Service Configuration
tab.configuration.service.console.status=Click to go to Console Service Configuration
tab.configuration.service.system.label=System
tab.configuration.service.system.tooltip=Click to go to System Service Configuration
tab.configuration.service.system.status=Click to go to System Service Configuration
tab.configuration.service.global.label=Global
tab.configuration.service.global.tooltip=Click to go to Global Service Configuration
tab.configuration.service.global.status=Click to go to Global Service Configuration
tab.configuration.server.label=Servers and Sites
tab.configuration.server.tooltip=Click to go to Servers and Sites Configuration
tab.configuration.server.status=Click to go to Servers and Sites Configuration
tab.configuration.general.label=General
tab.configuration.general.tooltip=Click to go to General Services
tab.configuration.general.status=Click to go to General Services
tab.configuration.console.label=Administration Console
tab.configuration.console.tooltip=Click to go Administration Console Properties
tab.configuration.console.status=Click to go Administration Console Properties
tab.configuration.authentication.label=Authentication
tab.configuration.authentication.tooltip=Click to go to Authentication Services
tab.configuration.authentication.status=Click to go to Authentication Services
tab.configuration.core.label=Core
tab.configuration.core.tooltip=Click to go to Core Services
tab.configuration.core.status=Click to go to Core Services
tab.configuration.policy.label=Policy
tab.configuration.policy.tooltip=Click to go to Policy Services
tab.configuration.policy.status=Click to go to Policy Services
tab.configuration.scripts.label=Scripts
tab.configuration.scripts.tooltip=Click to go to Script Services
tab.configuration.scripts.status=Click to go to Script Services
tab.sub.services.tooltip=Click to go to Services
tab.sub.services.status=Click to go to Services
tab.sub.authentication.tooltip=Click to go to Authentication
tab.sub.authentication.status=Click to go to Authentication
tab.sub.repository.tooltip=Click to go to Data Stores
tab.sub.repository.status=Click to go to Data Stores
tab.sub.delegation.tooltip=Click to go to Privileges
tab.sub.delegation.status=Click to go to Privileges
#############################################################################
#
# Session Management
#
################################################################################
tab.session.current.label=Current Sessions
tab.session.current.tooltip=Click to go to Current Sessions
tab.session.current.status=Click to go to Current Sessions
#
tab.session.configuration.label=HA Configuration Properties
tab.session.configuration.tooltip=Click to go to Session HA Configuration Properties
tab.session.configuration.status=Click to go to Session HA Configuration Properties
#
tab.session.statistics.label=HA Statistics
tab.session.statistics.tooltip=Click to go to Session HA Statistics
tab.session.statistics.status=Click to go to Session HA Statistics
################################################################################
#
# Realm Management
#
################################################################################
top.level.realm=/ (Top Level Realm)
accesscontrol.tab.text=A realm is the unit that OpenAM uses to organize configuration information. Authentication properties, authorization policies, data stores, subjects and other data can be defined within the realm. The top level realm is created when you deploy OpenAM. The top level realm is the root of the OpenAM instance and contains OpenAM configuration data.
page.title.back.realms=Access Control
page.title.realms=Realms
page.title.realms.properties={0} - Properties
page.title.realms.authentication={0} - Authentication
table.realm.button.new=New...
table.realm.button.delete=Delete
table.realm.name.column.name=Realm Name
table.realm.path.column.name=Location
table.realm.action.column.name=Action
table.realm.action.edit=Edit
table.realm.title.name=Realms
table.realm.summary=Realms
table.realm.empty.message=There are no realms.
page.title.realm.create=New Realm
page.title.realm.profile=Realm Profile
realm.sectionHeader.general=General
realm.missing.realmName=Name of realm is required.
realm.message.deleted=Realm is deleted.
realm.message.deleted.pural=Realms are deleted.
realm.showMenu.label=View
realm.showmenu.label.properties=General
realm.showmenu.label.authentication=Authentication
realm.showmenu.label.services=Services
realm.showmenu.label.repository=Data Stores
realm.showmenu.label.roles=Roles
realm.showmenu.label.users=Users
realm.showmenu.label.groups=Groups
realm.showmenu.label.policy=Policies
realm.showmenu.label.subjects=Subjects
realm.showmenu.label.delegation=Privileges
realm.showmenu.label.scripts=Scripts
authDomain.attribute.label.name=Name
realm.parent.label=Parent
################################################################################
#
# Services Management (under Realm)
#
################################################################################
page.title.realms.services={0} - Services
page.title.services=Services
table.services.title.name=Services
table.services.summary=Services
table.services.empty.message=There are no services under this realm.
table.services.button.new=Add...
table.services.button.delete=Remove
table.services.name.column.name=Name
table.services.action.column.name=Action
table.services.action.edit=Edit
services.attribute.label.name=Name
services.attribute.label.serviceList=Services
services.noservices.for.assignment.message=There are no services available for assigning to this realm.
page.title.services.select=Step 1 of 2: Select Service
page.title.services.add=Step 2 of 2: Add Service - {0}
services.message.deleted=Service has been removed.
services.message.deleted.pural=Services have been removed.
services.missing.servicename=Service Name is required.
realm.services.noorganization.attributes=There are no attributes to display.
realm.services.not.assign.service=Unable to assign service
################################################################################
#
# Delegation Management
#
################################################################################
page.title.delegation={0} - Privileges
table.delegation.title.name=Privileges
table.delegation.summary=Privilege(s)
table.delegation.empty.message=There are no privileges.
table.delegation.name.column.name=Name
table.delegation.button.new=Add...
table.delegation.button.delete=Delete
nopermissions.message=There are no permissions.
delegation.section.privileges=Privileges
delegation.no.privileges=There are no privileges under this realm.
delegation.RealmAdmin=Read and write access to all realm and policy properties
delegation.RealmReadOnly=Read only access to all properties and services
delegation.DatastoresReadOnly=Read only access to data stores
delegation.privilege.updated=Privilege Profile was updated.
delegation.LogAdmin=Read and write access to all log files
delegation.LogRead=Read access to all log files
delegation.LogWrite=Write access to all log files
delegation.AgentAdmin=Read and write access to all configured Agents
delegation.FederationAdmin=Read and write access to all federation metadata configurations
delegation.PolicyAdmin=Read and write access for policy administration (includes related REST endpoints)
delegation.EntitlementRestAccess=REST calls for policy evaluation
delegation.PrivilegeRestReadAccess=REST calls for reading policies
delegation.PrivilegeRestAccess=REST calls for managing policies
delegation.ApplicationReadAccess=REST calls for reading policy applications
delegation.ApplicationModifyAccess=REST calls for modifying policy applications
delegation.ResourceTypeReadAccess=REST calls for reading policy resource types
delegation.ResourceTypeModifyAccess=REST calls for modifying policy resource types
delegation.ApplicationTypesReadAccess=REST calls for reading policy application types
delegation.ConditionTypesReadAccess=REST calls for reading environment conditions
delegation.SubjectTypesReadAccess=REST calls for reading subject conditions
delegation.DecisionCombinersReadAccess=REST calls for reading decision combiners
delegation.SubjectAttributesReadAccess=REST calls for reading subject attributes
delegation.RealmReadAccess=REST calls for reading realms
delegation.SessionPropertyModifyAccess=REST calls for modifying session properties.
################################################################################
#
# Entities Management
#
################################################################################
page.title.entities={0}
table.entities.title.name={0}
table.entities.summary={0}
table.entities.empty.message=There are no entities.
table.entities.button.new=New...
table.entities.button.delete=Delete
table.entities.name.column.name=Name
table.entities.name.column.id=Universal Id
table.entities.action.column.name=Action
table.entities.action.edit=Edit
entity.attribute.label.name=ID
entity.attribute.label.uuid=Universal ID
entity.attribute.label.entityType=Type
entity.attribute.label.agenttype=Agent Type
entity.attribute.label.agenttype.policy.agent=Policy Agent
entity.attribute.label.agenttype.wsc=Web Service Security Client
entity.attribute.label.agenttype.wsp=Web Service Security Provider
page.title.entities.create=New {0}
page.title.entities.edit=Edit {0} - {1}
entities.missing.entityName={0} Name is required.
entities.message.deleted={0} has been deleted.
entities.message.deleted.pural={0}s have been deleted.
entity-values-missing=Values for {0} is required.
profile.tab=General
services.tab=Services
agent=Agent
user=User
group=Group
filteredrole=Filtered Role
role=Role
table.entities.memberOf.title.name={0}
table.entities.memberOf.summary={0}
table.entities.memberOf.empty.message=There are no subscriptions.
table.entities.memberOf.button.add=Add...
table.entities.memberOf.button.remove=Remove
table.entities.memberOf.action.edit=Edit
page.title.EntitySelectMembership=Select Membership
table.entities.selectMembership.title.name=Select Membership
table.entities.selectMembership.summary=Select Membership
table.entities.selectMembership.empty.message=There are no memberships.
table.EntitySelectMembership.name.column.name=Name
page.title.EntitySelectMembers=Select Entities
table.entities.selectMembers.title.name=Select Entities
table.entities.selectMembers.summary=Select Entities
table.entities.selectMembers.empty.message=There are no entities for selection.
table.EntitySelectMembers.name.column.name=Name
entities.membership.add.no.selection.message=Select one or more memberships.
entities.members.add.no.selection.message=Select one or more entities.
entities.membership.remove.no.selection.message=Select one or more memberships.
entities.members.remove.no.selection.message=Select one or more entities.
entities.membership.remove.membership=Membership is removed.
entities.membership.remove.membership.pural=Memberships are removed.
entities.members.remove.members=Member is removed.
entities.members.remove.members.pural=Members are removed.
page.title.entities.addservice.select=Step 1 of 2: Select Service for Addition
page.title.entities.addservice=Step 2 of 2: Add Service - {0}
page.title.entities.editservice=Edit Service - {0}
table.entities.services.title.name=Services
table.entities.services.summary=Services
table.entities.services.empty.message=There are no assigned services.
entities.message.service.unassigned=Service is unassigned.
entities.message.service.unassigned.pural=Services are unassigned.
entities.message.service.unassigned.non.selected=Select one service for unassignment.
################################################################################
#
# ID Repo Management
#
################################################################################
page.title.realms.idrepo={0} - Data Stores
table.idrepo.button.new=New...
table.idrepo.button.delete=Delete
table.idrepo.name.column.name=Name
table.idrepo.name.column.type=Type
table.idrepo.action.column.name=Action
table.idrepo.action.edit=Edit
idRepo.message.deleted=Data Store has been deleted.
idRepo.message.deleted.pural=Data Stores have been deleted.
page.title.idrepo=Data Stores
table.idrepo.title.name=Data Stores
table.idrepo.summary=Data Stores
table.idrepo.empty.message=There are no data stores.
page.title.realm.idrepo.create=Step 2 of 2: New Data Store - {0}
page.title.realm.idrepo.edit={0}
idrepo.attribute.label.name=Name
idrepo.attribute.label.IdRepoLoadSchemaWhenFinished=Load schema when finished
idrepo.attribute.label.IdRepoLoadSchemaWhenSaved=Load schema when saved
idrepo.attribute.label.idrepoType=Type
idrepo.missing.idRepoName=Name for Data Store is required.
page.title.idrepo.selectType=Step 1 of 2: Select Type of Data Store
idrepo.missing.plugins=There are no data stores configured for this realm.
entity.attribute.label.cospriority=Conflict Resolution Level
entity.attribute.label.cospriority.level.0=Highest
entity.attribute.label.cospriority.level.1=Higher
entity.attribute.label.cospriority.level.2=High
entity.attribute.label.cospriority.level.3=Medium
entity.attribute.label.cospriority.level.4=Low
entity.attribute.label.cospriority.level.5=Lower
entity.attribute.label.cospriority.level.6=Lowest
idrepo.sevices.not.supported=Services are not supported on this identity.
################################################################################
#
# Policy Management
#
################################################################################
page.title.policy={0} - Policies
table.policy.title.name=Policies
table.policy.summary=Policies
table.policy.empty.message=There are no policies.
table.policy.normal.button.new=New Policy...
table.policy.referral.button.new=New Referral...
table.policy.button.delete=Delete
table.policy.column.name=Name
table.policy.column.resources=Protected Resources
table.policy.column.active=Policy State
table.policy.action.column.name=Action
table.policy.action.edit=Edit
policy.modified.message=Policy has been updated.
policy.unsaved.message=Policy is modified. Click on Save button to save the changes.
noReferralForOrg.message=A referral policy with referred resources must first be created to this realm in order to create policies in this realm.
noPolicyConfigSvc.message=Cannot create policy because this realm may not have the Policy Configuration Service.
page.title.policy.selectType=Select Policy Type
page.title.policy.create=New Policy
page.title.referral.create=New Referral
page.title.policy.edit=Edit Policy
policy.attribute.label.name=Name
policy.attribute.label.description=Description
policy.attribute.label.isActive=Active
policy.attribute.label.policyType=Type of Policy
policy.attribute.label.policyType.normal=Normal
policy.attribute.label.policyType.referral=Referral
policy.missing.policyName=Policy name is required.
policy.missing.ruleName=Rule name is required.
policy.missing.resourceName=Resource name is required.
policy.missing.actionValues=One or more action values are required.
policy.section.title.general=General
policy.section.title.rules=Rules
policy.table.title.rules=Rules
policy.table.rules.empty.message=There are no rules.
policy.rules.table.column.name=Rule Name
policy.rules.table.column.type=Service Type
policy.rules.table.column.action=Action
policy.table.rules.action.edit=Edit
policy.section.title.referrals=Referrals
policy.table.title.referrals=Referrals
policy.table.referrals.empty.message=There are no referrals.
policy.referrals.table.column.name=Name
policy.referrals.table.column.type=Type
policy.referrals.table.column.action=Action
policy.table.referral.action.edit=Edit
policy.rule.updated=Rule was updated. Click on the Save button in the policy view to save this change.
policy.subject.updated=Subject was updated. Click on the Save button in the policy view to save this change.
policy.referral.updated=Referral was updated. Click on the Save button in the policy view to save this change.
policy.condition.updated=Condition was updated. Click on the Save button in the policy view to save this change.
policy.responseProvider.updated=Response Provider was updated. Click on the Save button in the policy view to save this change.
policy.message.deleted=Policy has been deleted.
policy.message.deleted.pural=Policies have been deleted.
policy.message.unableToDeletePolicies=Unable to delete these policies: {0}.
page.title.policy.selectServiceType=Step 1 of 2: Select Service Type for the Rule
policy.rule.attribute.label.name=Name
policy.rule.attribute.label.serviceType=Service Type
policy.rule.attribute.label.managedResource=Parent Resource Name
policy.rule.attribute.label.resourceName=Resource Name
policy.rule.attribute.label.actions=One or more actions are required.
page.title.policy.rule.create=Step 2 of 2: New Rule
page.title.policy.rule.edit=Edit Rule
policy.rules.section.title.actions=Actions
policy.table.title.actions=Actions
policy.table.rules.actions.empty.message=There are no actions.
policy.rules.actions.table.column.select=Select
policy.rules.actions.table.column.name=Action
policy.rules.actions.table.column.value=Value
policy.rules.withResourceName={0} (with resource name)
policy.rules.withoutResourceName={0} (without resource name)
page.title.policy.referral.create=Step 2 of 2: New Referral - {0}
page.title.policy.referral.create.shortcut=New Referral - {0}
page.title.policy.referral.edit=Edit Referral - {0}
page.title.policy.selectReferralType=Step 1 of 2: Select Referral Type
policy.referral.attribute.label.name=Name
policy.referral.attribute.label.referralType=Type
policy.missing.referralName=Referral Name is required.
policy.referral.attribute.label.value=Value
policy.missing.referral.value=Referral Value is required.
policy.referral.attribute.label.filter=Filter
policy.referral.attribute.label.filter.button=Search
policy.referral.sizelimit.exceeded.message=Size limit Exceeded. Refine your search to locate more entries.
policy.referral.timelimit.exceeded.message=Time limit Exceeded. Refine your search to locate more entries.
policy.section.title.subjects=Subjects
policy.table.title.subjects=Subjects
policy.table.subjects.empty.message=There are no subjects.
policy.subjects.table.column.name=Name
policy.subjects.table.column.type=Type
policy.subjects.table.column.action=Action
policy.table.subjects.action.edit=Edit
policy.missing.subjectName=Subject Name is required.
policy.missing.subject.value=Subject Value is required.
policy.subject.attribute.label.name=Name
policy.subject.attribute.label.subjectType=Type
policy.subject.attribute.label.exclusive=Exclusive
page.title.policy.selectSubjectType=Step 1 of 2: Select Subject Type
page.title.policy.subject.create=Step 2 of 2: New Subject - {0}
page.title.policy.subject.create.shortcut=New Subject - {0}
page.title.policy.subject.edit=Edit Subject - {0}
policy.subject.attribute.label.value=Value
policy.subject.attribute.label.filter=Filter
policy.subject.attribute.label.filter.button=Search
policy.subject.sizelimit.exceeded.message=Size limit Exceeded. Refine your search to locate more entries.
policy.subject.timelimit.exceeded.message=Time limit Exceeded. Refine your search to locate more entries.
policy.subject.select.identity.type=-- Select Identity Type --
policy.section.title.responseproviders=Response Providers
policy.table.title.responseproviders=Response Providers
policy.table.responseproviders.empty.message=There are no response providers.
policy.responseprovider.attribute.label.responseProvider=Response Provider Type
policy.responseproviders.table.column.name=Name
policy.responseproviders.table.column.type=Type
policy.responseproviders.table.column.action=Action
page.title.policy.responseprovider.create=Step 2 of 2: New Response Provider - {0}
page.title.policy.responseprovider.create.shortcut=New Response Provider - {0}
page.title.policy.responseprovider.edit=Edit Response Provider - {0}
policy.responseprovider.attribute.label.filter.button=Search
policy.responseprovider.attribute.label.filter=Filter
policy.responseprovider.attribute.label.name=Name
policy.missing.responseProviderName=Name is required.
policy.missing.responseprovider.value=Value is required.
page.title.policy.select.response.attribute.type=Step 1 of 2: Select Response Provider Type
policy.responseprovider.sizelimit.exceeded.message=Size limit Exceeded. Refine your search to locate more entries.
policy.responseprovider.timelimit.exceeded.message=Time limit Exceeded. Refine your search to locate more entries.
policy.responseprovider.section.label.values=Values
policy.responseprovider.attribute.label.responseProviderType=Type
policy.conditions.table.column.name=Name
policy.conditions.table.column.type=Type
policy.conditions.table.column.action=Action
policy.table.conditions.action.edit=Edit
policy.section.title.conditions=Conditions
policy.table.title.conditions=Conditions
policy.table.conditions.empty.message=There are no conditions
policy.condition.attribute.label.name=Name
policy.condition.attribute.label.conditionType=Type
policy.condition.attribute.label.filter=Filter
policy.condition.attribute.label.filter.button=Search
policy.condition.section.label.values=Values
page.title.policy.condition.create=Step 2 of 2: New Condition - {0}
page.title.policy.condition.create.shortcut=New Condition - {0}
page.title.policy.condition.edit=Edit Condition - {0}
page.title.policy.selectConditionType=Step 1 of 2: Select Condition Type
policy.missing.conditionName=Condition Name is required.
policy.missing.condition.value=Condition value is required.
policy.condition.attribute.label.search=Search Filter
policy.condition.filter.button=Search
policy.condition.attribute.label.realm=Realm where user authenticated
policy.condition.attribute.button.realm=Select Realm
policy.condition.attribute.label.selectrealm=Realm
policy.condition.attribute.label.selectschemes=Module Instance
policy.condition.title.selectrealm=Select Realm
policy.condition.selectrealm.no.search.result.message=No matching realm names.
policy.condition.null.realm=[Empty]
# Authentication Level Condition
policy.condition.attribute.label.authlevel=Authentication Level
policy.table.condition.auth.level.title=Authentication Level for Modules
policy.table.condition.auth.level.empty.message=There are no authentication levels.
policy.table.condition.auth.level.column.module=Module
policy.table.condition.auth.level.column.level=Level
policy.condition.missing.realm=Realm is required.
policy.condition.missing.auth.level=Authentication Level is required.
policy.condition.authlevel.no.search.result.message=No matching realm names.
policy.condition.authlevel.no.longer.exist.realm=Realm, {0}, no longer exists.
# Authentication Scheme Condition
policy.condition.attribute.label.authscheme=Module Instances
policy.condition.missing.auth.scheme=A module instance is required.
policy.condition.section.app=Application Timeout Properties
policy.condition.attribute.label.appname=Application Name
policy.condition.attribute.label.apptimeout=Timeout Value
policy.condition.attribute.timeout.help=Time to live for the application session.<br>Set the value to 0 to never timeout.
# Session Condition
policy.condition.attribute.label.max.session.time=Maximum Session Time (minutes)
policy.condition.attribute.label.terminate.session=Terminate Session
policy.condition.missing.session.max.time=Maximum Session Time is required.
session_condition_false_value=No
session_condition_true_value=Yes
# IP Condition
policy.condition.section.ip=IP Address
policy.condition.attribute.label.startIP=From
policy.condition.attribute.label.endIP=To
policy.condition.section.dnsName=DNS
policy.condition.attribute.label.dnsName=DNS Name
policy.condition.missing.ip.dns.message=IP Address or DNS Name is required.
policy.condition.attribute.label.ipAddressVersion=IP Address Version
policy.condition.attribute.option.ipv4=IPv4
policy.condition.attribute.option.ipv6=IPv6
policy.condition.attribute.option.colon=:
policy.condition.attribute.option.dot=.
# Authenticate To Realm Condition
policy.condition.attribute.label.authtorealm=Realm where user authenticated
policy.condition.attribute.label.authtorealm.search=Search Filter
policy.condition.authtorealm.filter.button=Search
policy.condition.missing.authtorealm.message=Realm is required.
policy.condition.authtorealm.no.search.result.message=The search filter does not match any realms.
# Identity Subject Condition
policy.condition.missing.identity.membership.message=At least one Identity must be selected.
# Time Condition
policy.condition.help=A time condition must contain one of the following values: Date, Time, Day, or Time Zone.
policy.condition.section.date=Date
policy.condition.section.time=Time
policy.condition.section.day=Day
policy.condition.section.timezone=Timezone
policy.condition.attribute.label.startdate=Start Date
policy.condition.attribute.label.enddate=End Date
policy.condition.attribute.label.starttime=Start Time
# Change the value to a desired format according to
# the preferred locale, so that console will display
# the format correctly.
policy.condition.startdate.help=Format: mm/dd/yyyy
policy.condition.attribute.label.endtime=End Time
# Change the value to a desired format according to
# the preferred locale, so that console will display
# the format correctly.
policy.condition.enddate.help=Format: mm/dd/yyyy
# Change the value of
# policy.condition.time.dateformat to a desired format
# according to the preferred locale, so that console
# will display date correctly according to
# preferred locale.
policy.condition.time.dateformat=MM/dd/yyyy
policy.condition.attribute.time.option.am=AM
policy.condition.attribute.time.option.pm=PM
policy.condition.attribute.label.startday=Start Day
policy.condition.attribute.label.endday=End Day
policy.condition.attribute.time.option.sunday=Sunday
policy.condition.attribute.time.option.monday=Monday
policy.condition.attribute.time.option.tuesday=Tuesday
policy.condition.attribute.time.option.wednesday=Wednesday
policy.condition.attribute.time.option.thursday=Thursday
policy.condition.attribute.time.option.friday=Friday
policy.condition.attribute.time.option.saturday=Saturday
policy.condition.attribute.label.standardtimezone=Standard
policy.condition.attribute.label.customtimezone=Custom
policy.condition.missing.time.condition.value=One of the date/time condition values is required.
policy.condition.time.invalid.startdate=Invalid Start Date.
policy.condition.time.invalid.enddate=Invalid End Date.
policy.condition.time.invalid.starttime=Invalid Start Time.
policy.condition.time.invalid.endtime=Invalid End Time.
policy.condition.time.invalid.timezone=Invalid Timezone.
# Session Property Condition
policy.condition.attribute.label.caseInsensitive=Ignore Case of Values
policy.condition.missing.session.property.message=Property Value is required.
policy.condition.attribute.label.session.property.condition.values=Values
policy.condition.attribute.label.session.property.condition.noentries=There are no values.
policy.table.condition.session.property.column.name=Property Name
policy.table.condition.session.property.column.values=Values
policy.table.condition.session.property.button.create=Add
policy.table.condition.session.property.button.add=Add ..
policy.table.condition.session.property.button.delete=Delete
policy.condition.session.property.add=New Property
policy.condition.session.property.edit=Edit Property
policy.condition.missing.session.property.name.message=Property Name is required.
policy.condition.session.property.reserved.name.message=Property Name is reserved.
policy.condition.session.property.name.already.exists.message=Property Name already exists.
policy.name.change=The policy name entered is invalid. Enter a new name.
policy.create.name=<enter policy name>
# Authenticate to Service Condition
policy.condition.attribute.label.service=Authentication Chain
policy.condition.missing.auth.service=An authentication chain is required.
policy.resources.empty.message=[ empty ]
policy.resources.active.true=Enabled
policy.resources.active.false=Disabled
policy.no.service.types=Cannot create rules because there are no service types configured.
policy.no.subject.types=Cannot create subjects because there are no subject types configured.
policy.no.condition.types=Cannot create conditions because there are no condition types configured.
policy.no.response.providers.types=Cannot create response providers because there are no response providers types configured.
table.agent.title.name=Agents
table.agent.summary=Agents
table.agent.empty.message=There are no agents to display.
removed.service=The service was removed.
removed.multiple.services=The services were removed.
page.title.user.change.password=Change Password for {0}
user.change.password.help=Type in the new password, then re-enter it.
user.change.password.label=New Password
user.change.password.confirm.label=Re-Enter Password
user.change.password.missing.password.message=Value for the new password is required.
user.change.password.mismatch.password.message=The passwords you entered do not match.
user.change.password.modified.password.message=Password was changed.
user.change.password.missing.old.password.message=Value for the old password is required.
user.change.old.password.label=Old Password
user.change.old.password.help=Type in your old password.
title.user.resource.offering=User Discovery Resource Offering for {0}
table.user.resource.offerings.button.new=Add...
table.user.resource.offerings.button.delete=Delete
table.user.resource.offerings.column.service.name=Service Type
table.user.resource.offerings.column.abstract=Abstract
table.user.resource.offering.title=Discovery Resource Offering
table.user.resource.offering.empty.message=There are no resource offerings.
createFailure.message=An error occurred while creating the entry.
################################################################################
#
# Configuration
#
################################################################################
page.title.config=Configuration
config.auth.label=Authentication
config.console.label=Console Properties
config.global.label=Global Properties
config.system.label=System Properties
################################################################################
#
# Service Management
#
################################################################################
service.name=Service Name
subconfig.message.deleted=Sub Configuration has been deleted.
subconfig.message.deleted.pural=Sub Configurations have been deleted.
page.title.services.sub.schema.select=Select Sub Schema
services.attribute.label.subConfiguration.selection.message=Select one sub configuration type for creation.
subconfig.attribute.label.name=Name
subconfig.missing.subconfiguration.name.message=Sub Configuration name is required.
page.title.services.add.subconfig=Add Sub Configuration
page.title.services.edit.subconfig=Edit Sub Configuration - {0}
policy.service.table.resource.comparator.create.page.title=New Resource Comparator
policy.service.table.resource.comparator.edit.page.title=Edit Resource Comparator = {0}.
policy.service.resource.comparator.create.page.title=New Resource Comparator
policy.service.resource.comparator.edit.page.title=Edit Resource Comparator
policy.service.resource.comparator.invalid.resourceComparator.message=Service Type and at least one of Class, Wildcard, Delimiter and Case Sensitive attributes are required.
policy.service.resource.comparator.service.type=Service Type
policy.service.resource.comparator.service.type.help=The name of the service to be associated with the resource comparator
policy.service.resource.comparator.clazz=Class
policy.service.resource.comparator.clazz.help=The class name of the resource comparator
policy.service.resource.comparator.clazz.help.txt=Resource comparators are used to compare the resource name from the incoming \
policy evaluation request against the resource name set in the policy. Resource comparators confirm if the resource names match, sub or \
super match, wildcard match or no match. Custom resource comparators can be implemented; typically for custom policy services. Custom \
resource comparators must implement the following interface:<br/><br/>\
<code>com.sun.identity.policy.interfaces.ResourceName</code>
policy.service.resource.comparator.delimiter=Delimiter
policy.service.resource.comparator.delimiter.help=The delimiter used in the resource name
policy.service.resource.comparator.delimiter.help.txt=Resource names can be hierarchial (such as URLs or file name). Hierarchial \
resource names use delimiters such as <code>/</code> to denote the different levels in the hierarchy.
policy.service.resource.comparator.wildcard=Wildcard
policy.service.resource.comparator.wildcard.help=
policy.service.resource.comparator.oneLevelWildcard=One Level Wildcard
policy.service.resource.comparator.case.sensitive=Case Sensitive
policy.service.resource.comparator.missing.service.type.message=Service Type is required
################################################################################
#
# Core Services
#
################################################################################
page.title.coreServices=Core Services
table.coreservices.title.name=Core Services
table.coreservices.summary=Core Services
table.coreservices.empty.message=There are no core services.
table.name.column.name=Service
table.action.column.name=Action
table.action.edit=Edit
################################################################################
#
# General Services
#
################################################################################
page.title.generalServices=General Services
table.generalservices.title.name=General Services
table.generalservices.summary=General Services
table.generalservices.empty.message=There are no general services.
################################################################################
#
# Client Detection Service
#
################################################################################
map.client.manager.window.title=Client Manager
map.client.manager.style.label=View
table.clientDetection.client.title.name=Client Type
table.clientDetection.client.title.summary=List of Client Types.
table.clientDetection.client.empty.message=There are no client types.
table.clientDetection.client.column.name=Client
table.clientDetection.action.column.name=Actions
clientDetection.customizable.label=**
clientDetection.customizable.legend=Indicates customized device.
clientDetection.style.label=Style
clientDetection.newDevice.button=New...
clientDetection.edit.hyperlink.label=Edit
clientDetection.default.hyperlink.label=Default
clientDetection.delete.hyperlink.label=Delete
clientDetection.duplicate.hyperlink.label=Duplicate
clientDetection.client.deleted.message=Device was deleted.
clientDetection.client.defaulted.message=Device profile was set to default setting.
map.client.manager.selectDevice.window.title=Step 1 of 2: Select Device Type
map.client.manager.createDevice.window.title=Step 2 of 2: New Device
map.client.manager.createDevice.style.label=Style
map.client.manager.createDevice.style.deviceUserAgent.label=Device User Agent
map.client.manager.duplicateDevice.window.title=Duplicate Device
map.client.manager.duplicateDevice.clientType.label=Client Type
map.client.manager.duplicateDevice.style.deviceUserAgent.label=Device User Agent
mapClientExist.message=Client, {0} already exists.
mapInvalidClientType.message=Client Type is required and cannot contain the following characters: whitespace , + " \\ / < > = : ;
mapMissingDeviceUserAgent.message=Device user agent is required.
mapMissingClientType.message=Client type is required.
mapCloneFailed.message=Unable to duplicate device.
mapCloneClient.name=Copy of
mapCloneClient.prefix=Copy_of_
map.no.profiles=There are no profiles.
################################################################################
#
# Globalization Service
#
################################################################################
globalization.service.table.SupportedCharsets.name=Charsets Supported by Each Locale
globalization.service.table.SupportedCharsets.noentries=There are no supported charsets.
globalization.service.table.SupportedCharsets.locale=Locale
globalization.service.table.SupportedCharsets.locale.help=The name of the locale
globalization.service.table.SupportedCharsets.charsets=Supported Charsets
globalization.service.table.SupportedCharsets.charsets.help=One or more charsets supported by the locale
globalization.service.table.SupportedCharsets.charsets.help.txt=Format for the attribute is as follows:<br/><br/>\
<code>charset_1;charset_2</code>
globalization.service.table.SupportedCharsets.action=Action
globalization.service.table.SupportedCharsets.add.button=Add...
globalization.service.table.SupportedCharsets.delete.button=Delete
globalization.service.table.SupportedCharsets.action.edit.label=Edit
globalization.service.SupportedCharsets.missing.locale.message=Locale is required.
globalization.service.SupportedCharsets.missing.charsets.message=One or more charsets are required.
globalization.service.SupportedCharsets.create.page.title=New Supported Charsets
globalization.service.SupportedCharsets.edit.page.title=Edit Supported Charsets
globalization.service.table.CharsetAlias.name=Charset Aliases
globalization.service.table.CharsetAlias.noentries=There are no charset aliases.
globalization.service.table.CharsetAlias.mimeName=MIME Name
globalization.service.table.CharsetAlias.javaName=Java Name
globalization.service.table.CharsetAlias.action=Action
globalization.service.table.CharsetAlias.add.button=Add...
globalization.service.table.CharsetAlias.delete.button=Delete
globalization.service.table.CharsetAlias.action.edit.label=Edit
globalization.service.CharsetAlias.missing.mimeName.message=MIME name is required.
globalization.service.CharsetAlias.missing.javaName.message=Java name is required.
globalization.service.CharsetAlias.create.page.title=New Charset Alias
globalization.service.CharsetAlias.create.page.existing=Existing Charset Alias
globalization.service.CharsetAlias.edit.page.title=Edit Charset Alias
globalization.service.locale.already.exists=Locale already exists. Edit it to modify its supported charsets.
################################################################################
#
# Server and Site Configuration Management
#
################################################################################
page.title.serversite.config=Servers and Sites
table.server.button.new=New ...
table.server.button.clone=Clone ...
table.server.button.delete=Delete
table.server.name.column.name=Server Name
table.server.site.column.name=Site Name
serverconfig.message.deleted=Server is deleted.
serverconfig.message.deleted.pural=Servers are deleted.
breadcrumbs.server.config=Server Configuration
table.server.title.name=Servers
table.server.summary=Servers
table.server.empty.message=There are no servers.
page.title.site.create=New Site
serverconfig.site.attribute.label.name=Name
serverconfig.site.attribute.label.primary.url=Primary URL
serverconfig.create.site.missing.attributes=Site must have a name and a URL.
serverconfig.create.site.invalid.url=Invalid URL
breadcrumbs.addsite=New Site
page.title.site.edit=Edit {0}
serverconfig.site.attribute.label.site.profile=Site Profile
serverconfig.site.attribute.label.failover.urls=Secondary URLs
serverconfig.site.attribute.label.site.servers=Assigned Servers
serverconfig.site.attribute.no.servers=There are no assigned servers.
siteconfig.updated=Site Profile was updated.
table.site.button.new=New ...
table.site.button.delete=Delete
table.site.name.column.name=Site Name
table.site.url.column.name=Primary URL
table.site.servers.column.name=Assigned Servers
siteconfig.message.deleted=Site is deleted.
siteconfig.message.deleted.pural=Sites are deleted.
breadcrumbs.site.config=Site Configuration
table.site.title.name=Sites
table.site.summary=Sites
table.site.empty.message=There are no sites.
serverconfig.server.attribute.label.name=Server URL
serverconfig.server.attribute.label.name.helpserverurl=The FQDN should be in the format of http(s)://host.domain:port/uri.
serverconfig.server.clone.help.name=This will create a new server entry which uses all of the settings from the original server, {0}.
page.title.server.clone=Clone Server {0}
serverconfig.clone.server.missing.atributes=Server Name is required.
breadcrumbs.clone.server=Clone Server
breadcrumbs.edit.server=Edit Server
page.title.server.edit=Edit {0}
none.site=___None___
serverconfig.server.attribute.label.parent.site=Parent Site
serverconfig.updated=Server Profile was updated.
serverconfig.updated.with.invalid.properties=Server Profile was updated. {0}
serverconfig.server.button.defaultserver=Default Server Settings
amconfig.header.datastore=Data Store
amconfig.header.eventservice=Event Service
amconfig.header.ldapconnection=LDAP Connection
amconfig.header.cachingreplica=Caching and Replica
amconfig.header.sdktimetoliveconfig=Time To Live Configuration
amconfig.header.encryption=Encryption
amconfig.header.validation=Validation
amconfig.header.cookie=Cookie
amconfig.header.securitykey=Key Store
amconfig.header.crlcache=Certificate Revocation List Caching
amconfig.header.ocsp.check=Online Certificate Status Protocol Check
amconfig.header.fips=Federal Information Processing Standards
amconfig.header.deserialisationwhitelist=Object Deserialisation Class Whitelist
amconfig.header.site=Site
amconfig.header.installdir=System
amconfig.header.debug=Debugging
amconfig.header.mailserver=Mail Server
amconfig.header.sessionthresholds=Session Limits
amconfig.header.sessionlogging=Statistics
amconfig.header.sessionnotification=Notification
amconfig.header.sessionvalidation=Validation
amconfig.com.iplanet.am.locale=Default Locale
amconfig.help.com.iplanet.am.locale=Default locale for the product. (property name: com.iplanet.am.locale)
amconfig.com.iplanet.services.configpath=Base installation directory
amconfig.help.com.iplanet.services.configpath=Base directory where product's data resides. (property name: com.iplanet.services.configpath)
amconfig.com.iplanet.services.debug.level=Debug Level
amconfig.com.sun.services.debug.mergeall=Merge Debug Files
amconfig.help.com.iplanet.services.debug.level=Debug level for all components in the product. (property name: com.iplanet.services.debug.level)
amconfig.help.com.sun.services.debug.mergeall=On : Directs all debug data to a single file (debug.out); Off : creates separate per-component debug files (property name : com.sun.services.debug.mergeall)
amconfig.com.iplanet.services.debug.directory=Debug Directory
amconfig.help.com.iplanet.services.debug.directory=Directory where debug files reside. (property name: com.iplanet.services.debug.directory)
amconfig.com.iplanet.services.comm.server.pllrequest.maxContentLength=Platform Low Level Comm. Max. Content Length
amconfig.help.com.iplanet.services.comm.server.pllrequest.maxContentLength=Maximum content-length for an HttpRequest. (property name: com.iplanet.services.comm.server.pllrequest.maxContentLength)
amconfig.com.iplanet.am.stats.interval=Logging Interval (in seconds)
amconfig.help.com.iplanet.am.stats.interval=Number of seconds to elapse between statistics logging. The interval should be at least 5 seconds to avoid CPU saturation. An interval value less than 5 seconds will be interpreted as 5 seconds. (property name: com.iplanet.am.stats.interval)
amconfig.com.iplanet.services.stats.state=State
amconfig.help.com.iplanet.services.stats.state=Statistics state 'file' will write to a file under the specified directory, and 'console' will write into webserver log files. (property name: com.iplanet.services.stats.state)
amconfig.com.iplanet.services.stats.directory=Directory
amconfig.help.com.iplanet.services.stats.directory=Directory where the statistic files will be created. Use forward slashes "/" to separate directories, not backslash "\\". Spaces in the file name are allowed for Windows. (property name: com.iplanet.services.stats.directory)
amconfig.org.forgerock.services.cts.store.common.section=CTS Token Store
amconfig.org.forgerock.services.cts.store.external.section=External Store Configuration
amconfig.org.forgerock.services.resourcesets.store.common.section=Resource Sets Store
amconfig.org.forgerock.services.resourcesets.store.external.section=External Resource Sets Store Configuration
amconfig.org.forgerock.services.umaaudit.store.common.section=UMA Audit Store
amconfig.org.forgerock.services.umaaudit.store.external.section=External UMA Audit Store Configuration
amconfig.org.forgerock.services.uma.pendingrequests.store.common.section=Pending Requests Store
amconfig.org.forgerock.services.uma.pendingrequests.store.external.section=External Pending Requests Store Configuration
amconfig.org.forgerock.services.uma.labels.store.common.section=UMA Resource Set Labels Store
amconfig.org.forgerock.services.uma.labels.store.external.section=External Resource Set Labels Store Configuration
amconfig.org.forgerock.services.store.location=Store Mode
amconfig.org.forgerock.services.store.location.default=Default Token Store
amconfig.org.forgerock.services.store.location.external=External Token Store
amconfig.org.forgerock.services.store.root.suffix=Root Suffix
amconfig.org.forgerock.services.store.ssl.enabled=SSL/TLS Enabled
amconfig.org.forgerock.services.store.loginid=Login Id
amconfig.org.forgerock.services.store.password=Password
amconfig.org.forgerock.services.store.max.connections=Max Connections
amconfig.org.forgerock.services.store.heartbeat=Heartbeat
amconfig.org.forgerock.services.store.directory.name=Connection String(s)
amconfig.help.org.forgerock.services.store.directory.name=An ordered list of connection strings for LDAP directories. \
Each connection string is composed as follows: <code>HOST:PORT[|SERVERID[|SITEID]]</code>, where \
server and site IDs are optional parameters that will prioritize that connection to use from the specified nodes. Multiple \
connection strings should be comma-separated, e.g. <code>host1:389,host2:50389|server1|site1,host3:50389</code>.
amconfig.org.forgerock.services.cts.store.affinity.enabled=Affinity Enabled
amconfig.help.org.forgerock.services.cts.store.affinity.enabled=Enables affinity based request load balancing when \
accessing the CTS servers. It is imperative that the connection string setting is set to the same value for all \
OpenAM servers in the deployment when this feature is enabled.
amconfig.org.forgerock.services.cts.store.location=Store Mode
amconfig.org.forgerock.services.cts.store.root.suffix=Root Suffix
amconfig.org.forgerock.services.cts.store.ssl.enabled=SSL/TLS Enabled
amconfig.org.forgerock.services.cts.store.loginid=Login Id
amconfig.org.forgerock.services.cts.store.password=Password
amconfig.org.forgerock.services.cts.store.max.connections=Max Connections
amconfig.org.forgerock.services.cts.store.heartbeat=Heartbeat
amconfig.org.forgerock.services.cts.store.directory.name=Connection String(s)
amconfig.org.forgerock.services.resourcesets.store.location=Resource Sets - Store Mode
amconfig.org.forgerock.services.resourcesets.store.root.suffix=Resource Sets - Root Suffix
amconfig.org.forgerock.services.resourcesets.store.ssl.enabled=Resource Sets - SSL/TLS Enabled
amconfig.org.forgerock.services.resourcesets.store.loginid=Resource Sets - Login Id
amconfig.org.forgerock.services.resourcesets.store.password=Resource Sets - Password
amconfig.org.forgerock.services.resourcesets.store.max.connections=Resource Sets - Max Connections
amconfig.org.forgerock.services.resourcesets.store.heartbeat=Resource Sets - Heartbeat
amconfig.org.forgerock.services.resourcesets.store.directory.name=Resource Sets - Connection String(s)
amconfig.org.forgerock.services.umaaudit.store.location=Audit - Store Mode
amconfig.org.forgerock.services.umaaudit.store.root.suffix=Audit - Root Suffix
amconfig.org.forgerock.services.umaaudit.store.ssl.enabled=Audit - SSL/TLS Enabled
amconfig.org.forgerock.services.umaaudit.store.loginid=Audit - Login Id
amconfig.org.forgerock.services.umaaudit.store.password=Audit - Password
amconfig.org.forgerock.services.umaaudit.store.max.connections=Audit - Max Connections
amconfig.org.forgerock.services.umaaudit.store.heartbeat=Audit - Heartbeat
amconfig.org.forgerock.services.umaaudit.store.directory.name=Audit - Connection String(s)
amconfig.org.forgerock.services.uma.pendingrequests.store.location=Pending Requests - Store Mode
amconfig.org.forgerock.services.uma.pendingrequests.store.root.suffix=Pending Requests - Root Suffix
amconfig.org.forgerock.services.uma.pendingrequests.store.ssl.enabled=Pending Requests - SSL/TLS Enabled
amconfig.org.forgerock.services.uma.pendingrequests.store.loginid=Pending Requests - Login Id
amconfig.org.forgerock.services.uma.pendingrequests.store.password=Pending Requests - Password
amconfig.org.forgerock.services.uma.pendingrequests.store.max.connections=Pending Requests - Max Connections
amconfig.org.forgerock.services.uma.pendingrequests.store.heartbeat=Pending Requests - Heartbeat
amconfig.org.forgerock.services.uma.pendingrequests.store.directory.name=Pending Requests - Connection String(s)
amconfig.org.forgerock.services.uma.labels.store.location=Labels - Store Mode
amconfig.org.forgerock.services.uma.labels.store.root.suffix=Labels - Root Suffix
amconfig.org.forgerock.services.uma.labels.store.ssl.enabled=Labels - SSL/TLS Enabled
amconfig.org.forgerock.services.uma.labels.store.loginid=Labels - Login Id
amconfig.org.forgerock.services.uma.labels.store.password=Labels - Password
amconfig.org.forgerock.services.uma.labels.store.max.connections=Labels - Max Connections
amconfig.org.forgerock.services.uma.labels.store.heartbeat=Labels - Heartbeat
amconfig.org.forgerock.services.uma.labels.store.directory.name=Labels - Connection String(s)
amconfig.com.iplanet.am.clientIPCheckEnabled=Client IP Address Check
amconfig.help.com.iplanet.am.clientIPCheckEnabled=Specifies whether or not the IP address of the client is checked in all single sign on token creations or validations. (property name: com.iplanet.am.clientIPCheckEnabled)
amconfig.com.iplanet.am.cookie.name=Cookie Name
amconfig.help.com.iplanet.am.cookie.name=The cookie name used by Authentication Service to set the valid session handler ID. This name is used to retrieve the valid session information. (property name: com.iplanet.am.cookie.name)
amconfig.com.iplanet.am.cookie.secure=Secure Cookie
amconfig.help.com.iplanet.am.cookie.secure=Specifies whether to set cookie in a secure mode in which the browser will only return the cookie when a secure protocol such as HTTP(s) is used. (property name: com.iplanet.am.cookie.secure)
amconfig.com.iplanet.am.cookie.encode=Encode Cookie Value
amconfig.help.com.iplanet.am.cookie.encode=Specifies whether to URL encode the cookie value. (property name: com.iplanet.am.cookie.encode)
amconfig.com.sun.identity.saml.xmlsig.keystore=Keystore File
amconfig.help.com.sun.identity.saml.xmlsig.keystore=Specifies the location of the keystore file. (property name: com.sun.identity.saml.xmlsig.keystore)
amconfig.com.sun.identity.saml.xmlsig.storetype=Keystore Type
amconfig.help.com.sun.identity.saml.xmlsig.storetype=Specifies the keystore type. (property name: com.sun.identity.saml.xmlsig.storetype)
amconfig.com.sun.identity.saml.xmlsig.storepass=Keystore Password File
amconfig.help.com.sun.identity.saml.xmlsig.storepass=Specifies the location of the file that contains the password used to access the keystore file. (property name: com.sun.identity.saml.xmlsig.storepass)
amconfig.com.sun.identity.saml.xmlsig.keypass=Private Key Password File
amconfig.help.com.sun.identity.saml.xmlsig.keypass=Specifies the location of the file that contains the password used to protect the private key of a generated key pair. (property name: com.sun.identity.saml.xmlsig.keypass)
amconfig.com.sun.identity.saml.xmlsig.certalias=Certificate Alias
amconfig.help.com.sun.identity.saml.xmlsig.certalias=(property name: com.sun.identity.saml.xmlsig.certalias)
amconfig.am.encryption.pwd=Password Encryption Key
amconfig.help.am.encryption.pwd=The encryption key value for decrypting passwords stored in the Service Management System configuration. (property name: am.encryption.pwd)
amconfig.com.iplanet.am.service.secret=Authentication Service Shared Secret
amconfig.help.com.iplanet.am.service.secret=The shared secret for application authentication module. (property name: com.iplanet.am.service.secret)
amconfig.com.iplanet.security.encryptor=Encryption class
amconfig.help.com.iplanet.security.encryptor=The default encryption class. (property name: com.iplanet.security.encryptor)
amconfig.com.iplanet.security.SecureRandomFactoryImpl=Secure Random Factory Class
amconfig.help.com.iplanet.security.SecureRandomFactoryImpl=This property is used for specifying SecureRandomFactory class. Available values for this property are com.iplanet.am.util.JSSSecureRandomFactoryImpl that is using JSS and com.iplanet.am.util.SecureRandomFactoryImpl that is using pure Java only. (property name: com.iplanet.security.SecureRandomFactoryImpl)
amconfig.com.sun.identity.client.notification.url=Notification URL
amconfig.help.com.sun.identity.client.notification.url=The location of notification service end point. It is usually the product's deployment URI/notificationservice. (property name: com.sun.identity.client.notification.url)
amconfig.com.iplanet.am.directory.host=Directory Server Host Name
amconfig.help.com.iplanet.am.directory.host=The host name of the directory server
amconfig.com.iplanet.am.directory.port=Directory Server Port Number
amconfig.help.com.iplanet.am.directory.port=The port number of the directory server
amconfig.com.iplanet.am.smtphost=Mail Server Host Name
amconfig.help.com.iplanet.am.smtphost=(property name: com.iplanet.am.smtphost)
amconfig.com.iplanet.am.smtpport=Mail Server Port Number
amconfig.help.com.iplanet.am.smtpport=(property name: com.iplanet.am.smtpport)
amconfig.org.forgerock.openam.session.service.access.persistence.caching.maxsize=Maximum Session Cache Size
amconfig.help.org.forgerock.openam.session.service.access.persistence.caching.maxsize=The maximum number of sessions \
to cache in the per-server internal session cache. (property name: \
org.forgerock.openam.session.service.access.persistence.caching.maxsize)
amconfig.com.sun.am.session.enableHostLookUp=Enable Host Lookup
amconfig.help.com.sun.am.session.enableHostLookUp=Enables or disables host lookup during session logging. (property name: com.sun.am.session.enableHostLookUp)
amconfig.com.iplanet.am.session.invalidsessionmaxtime=Invalidate Session Max Time
amconfig.help.com.iplanet.am.session.invalidsessionmaxtime=Duration in minutes after which the invalid session will be removed from the session table if it is created and the user does not login. This value should always be greater than the timeout value in the Authentication module properties file. (property name: com.iplanet.am.session.invalidsessionmaxtime)
amconfig.com.sun.am.session.caseInsensitiveDN=Case Insensitive client DN comparison
amconfig.help.com.sun.am.session.caseInsensitiveDN=Specifies if client distinguished name comparison is case insensitive/sensitive. (property name: com.sun.am.session.caseInsensitiveDN)
amconfig.com.iplanet.am.sdk.cache.maxSize=SDK Caching Max. Size
amconfig.help.com.iplanet.am.sdk.cache.maxSize=Specifies the size of the cache when SDK caching is enabled. The size should be an integer greater than 0, or default size (10000) will be used. Changing this value will reset (clear) the contents of the cache. (property name: com.iplanet.am.sdk.cache.maxSize)
amconfig.com.iplanet.am.replica.num.retries=SDK Replica Retries
amconfig.help.com.iplanet.am.replica.num.retries=Specifies the number of times to retry when an Entry Not Found error is returned to the SDK. (property name: com.iplanet.am.replica.num.retries)
amconfig.com.iplanet.am.replica.delay.between.retries=Delay between SDK Replica Retries
amconfig.help.com.iplanet.am.replica.delay.between.retries=Specifies the delay time in milliseconds between the retries. (property name: com.iplanet.am.replica.delay.between.retries)
amconfig.com.iplanet.am.event.connection.num.retries=Number of retries for Event Service connections
amconfig.help.com.iplanet.am.event.connection.num.retries=Specifies the number of attempts made to successfully re-establish the Event Service connections. (property name: com.iplanet.am.event.connection.num.retries)
amconfig.com.iplanet.am.event.connection.delay.between.retries=Delay between Event Service connection retries
amconfig.help.com.iplanet.am.event.connection.delay.between.retries=Specifies the delay in milliseconds between retries to re-establish the Event Service connections. (property name: com.iplanet.am.event.connection.delay.between.retries)
amconfig.com.iplanet.am.event.connection.ldap.error.codes.retries=Error codes for Event Service connection retries
amconfig.help.com.iplanet.am.event.connection.ldap.error.codes.retries=This secifies the LDAP exception error codes for which retries to re-establish Event Service connections will trigger. (property name: com.iplanet.am.event.connection.ldap.error.codes.retries)
amconfig.com.sun.am.event.connection.idle.timeout=Idle Time Out
amconfig.help.com.sun.am.event.connection.idle.timeout=Specifies the number of minutes after which the persistent searches will be restarted. (property name: com.sun.am.event.connection.idle.timeout)
amconfig.com.sun.am.event.connection.disable.list=Disabled Event Service Connection
amconfig.help.com.sun.am.event.connection.disable.list=Specifies which event connection (persistent search) to be disabled. There are three valid values - aci, sm and um (case insensitive). Multiple values should be separated with ",". (property name: com.sun.am.event.connection.disable.list)
amconfig.com.iplanet.am.notification.threadpool.size=Notification Pool Size
amconfig.help.com.iplanet.am.notification.threadpool.size=Specifies the size of the notification thread pool (total number of threads). (property name: com.iplanet.am.notification.threadpool.size)
amconfig.com.iplanet.am.notification.threadpool.threshold=Notification Thread Pool Threshold
amconfig.help.com.iplanet.am.notification.threadpool.threshold=Specifies the maximum task queue length for serving notification threads. (property name: com.iplanet.am.notification.threadpool.threshold)
amconfig.com.iplanet.am.sdk.cache.entry.expire.enabled=Cache Entry Expiration Enabled
amconfig.help.com.iplanet.am.sdk.cache.entry.expire.enabled=If this property is set, the cache entries will expire based on the time specified in User Entry Expiration Time property. (property name: com.iplanet.am.sdk.cache.entry.expire.enabled)
amconfig.com.iplanet.am.sdk.cache.entry.user.expire.time=User Entry Expiration Time
amconfig.help.com.iplanet.am.sdk.cache.entry.user.expire.time=This property specifies time in minutes for which the user entries remain valid in cache after their last modification. After this specified period of time elapses (after the last modification/read from the directory), the data for the entry that is cached will expire. At that instant new requests for data for these user entries will result in reading from the Directory. (property name: com.iplanet.am.sdk.cache.entry.user.expire.time)
amconfig.com.iplanet.am.sdk.cache.entry.default.expire.time=Default Entry Expiration Time
amconfig.help.com.iplanet.am.sdk.cache.entry.default.expire.time=This property specifies time in minutes for which the non-user entries remain valid in cache after their last modification. After this specified period of time elapses (after the last modification/read from the directory), the data for the entry that is cached will expire. At that instant new requests for data for these non-user entries will result in reading from the Directory. (property name: com.iplanet.am.sdk.cache.entry.default.expire.time)
amconfig.com.iplanet.am.ldap.connection.num.retries=Number of retries for LDAP Connection
amconfig.help.com.iplanet.am.ldap.connection.delay.between.retries=Specifies the delay in milliseconds between retries to re-establish the LDAP connections. (property name: com.iplanet.am.ldap.connection.delay.between.retries)
amconfig.com.iplanet.am.ldap.connection.delay.between.retries=Delay between LDAP connection retries
amconfig.help.com.iplanet.am.ldap.connection.num.retries=Specifies the number of attempts made to successfully re-establish LDAP Connection. (property name: com.iplanet.am.ldap.connection.num.retries)
amconfig.com.iplanet.am.ldap.connection.ldap.error.codes.retries=Error codes for LDAP connection retries
amconfig.help.com.iplanet.am.ldap.connection.ldap.error.codes.retries=This secifies the LDAP exception error codes for which retries to re-establish LDAP connections will trigger. (property name: com.iplanet.am.ldap.connection.ldap.error.codes.retries)
amconfig.com.sun.identity.sm.ldap.enableProxy=Enable Directory Proxy
amconfig.help.com.sun.identity.sm.ldap.enableProxy=This indicates to Service Management that the Directory Proxy must be used for read, write, and/or modify operations to the Directory Server. This flag also determines if ACIs or delegation privileges are to be used. (property name: com.sun.identity.sm.ldap.enableProxy)
amconfig.com.iplanet.am.util.xml.validating=XML Validation
amconfig.help.com.iplanet.am.util.xml.validating=Specifies if validation is required when parsing XML documents. (property name: com.iplanet.am.util.xml.validating)
amconfig.com.sun.identity.sm.enableDataStoreNotification=Enable Datastore Notification
amconfig.help.com.sun.identity.sm.enableDataStoreNotification=Specifies if backend datastore notification is enabled. If this value is set to 'false', then in-memory notification is enabled. (property name: com.sun.identity.sm.enableDataStoreNotification)
amconfig.com.sun.identity.sm.notification.threadpool.size=Notification Pool Size
amconfig.help.com.sun.identity.sm.notification.threadpool.size=Specifies the size of the sm notification thread pool (total number of threads). (property name: com.sun.identity.sm.notification.threadpool.size)
amconfig.com.sun.identity.crl.cache.directory.host=LDAP server host name
amconfig.com.sun.identity.crl.cache.directory.port=LDAP server port number
amconfig.com.sun.identity.crl.cache.directory.ssl=SSL/TLS Enabled
amconfig.com.sun.identity.crl.cache.directory.user=LDAP server bind user name
amconfig.com.sun.identity.crl.cache.directory.password=LDAP server bind password
amconfig.com.sun.identity.crl.cache.directory.searchlocs=LDAP search base DN
amconfig.com.sun.identity.crl.cache.directory.searchattr=Search Attributes
amconfig.help.com.sun.identity.crl.cache.directory.searchattr=Any DN component of issuer's subjectDN can be used to retrieve CRL from local LDAP server. It is single value string, like, "cn". All Root CA need to use the same search attribute.
amconfig.com.sun.identity.authentication.ocspCheck=Check Enabled
amconfig.com.sun.identity.authentication.ocsp.responder.url=Responder URL
amconfig.com.sun.identity.authentication.ocsp.responder.nickname=Certificate Nickname
amconfig.openam.deserialisation.classes.whitelist=Whitelist
amconfig.help.openam.deserialisation.classes.whitelist=The list of classes that are considered valid when OpenAM performs Object deserialisation operations. The defaults should work for most installations. (property name: openam.deserialisation.classes.whitelist)
exception.cannot.delete.this.server.instance=Cannot delete current server.
serverconfig.button.inherit=Inheritance Settings
serverconfiguration.showmenu.label.general.properties=General
tab.serverconfiguration.showmenu.general.tooltip=Click to go to General Configuration.
serverconfiguration.showmenu.label.security.properties=Security
tab.serverconfiguration.showmenu.security.tooltip=Click to go to Security Configuration.
serverconfiguration.showmenu.label.session.properties=Session
tab.serverconfiguration.showmenu.session.tooltip=Click to go to Session Configuration.
serverconfiguration.showmenu.label.connection.properties=Connection
tab.serverconfiguration.showmenu.connection.tooltip=Click to go to Connection Configuration.
serverconfiguration.showmenu.label.sdk.properties=SDK
serverconfiguration.showmenu.label.cts.properties=CTS
serverconfiguration.showmenu.label.uma.properties=UMA
tab.serverconfiguration.showmenu.sdk.tooltip=Click to go to SDK Configuration.
tab.serverconfiguration.showmenu.cts.tooltip=Click to go to CTS Configuration.
tab.serverconfiguration.showmenu.uma.tooltip=Click to go to UMA Configuration.
serverconfiguration.showmenu.label.serverconfigxml.properties=Directory Configuration
tab.serverconfiguration.showmenu.serverconfigxml.tooltip=Click to go to Data Access Configuration
serverconfiguration.showmenu.label.advanced.properties=Advanced
tab.serverconfiguration.showmenu.advanced.tooltip=Click to go to Advanced Configuration
breadcrumbs.editserver=Edit Server
amconfig.choice.yes=Yes
amconfig.choice.true=true
amconfig.choice.false=false
amconfig.choice.on=on
amconfig.choice.off=off
amconfig.choice.com.iplanet.services.debug.level.error=Error
amconfig.choice.com.iplanet.services.debug.level.warning=Warning
amconfig.choice.com.iplanet.services.debug.level.message=Message
amconfig.choice.com.iplanet.services.debug.level.off=Off
amconfig.choice.com.sun.services.debug.mergeall.on=on
amconfig.choice.com.sun.services.debug.mergeall.off=off
amconfig.choice.com.iplanet.services.stats.state.off=Off
amconfig.choice.com.iplanet.services.stats.state.file=File
amconfig.choice.com.iplanet.services.stats.state.console=Console
table.inherit.property.name.column.name=Property Name
table.inherit.property.name.column.value=Default Value
page.title.server.config=Server Profile
page.title.server.inheritance=Server Property Inheritance Setting
table.server.inherit.inline.help=The Inheritance Settings allow you to select which default values can be overwritten for each server instance. Make sure that the attributes that you wish to define for the server instance are unchecked, and then click Save.
table.server.inherit.title.name=Inheritance Setting
table.server.inherit.summary=Inheritance Setting
table.server.inherit.empty.message=There are no properties.
servercfg.inheritance.updated=Server Property Inheritance Setting was updated.
page.title.server.create=New Server
table.serverconfig.advanced.property.title.name=Advanced Properties
table.serverconfig.advanced.property.summary=Advanced Properties
table.serverconfig.advanced.property.empty.message=There are no properties
table.serverconfig.advanced.properties.button.new=Add...
table.serverconfig.advanced.properties.button.delete=Delete
table.serverconfig.advanced.properties.name.column.name=Property Name
table.serverconfig.advanced.properties.value.column.name=Property Value
amconfig.serverconfig.xml.server.header=Directory Configuration
amconfig.serverconfig.server.min.pool=Minimum Connection Pool
amconfig.serverconfig.server.max.pool=Maximum Connection Pool
amconfig.serverconfig.xml.server.table.header=Server
amconfig.serverconfig.xml.server.table.header.noentries=There are no entries.
amconfig.serverconfig.xml.server.table.add.button=Add...
amconfig.serverconfig.xml.server.table.delete.button=Delete
amconfig.serverconfig.xml.server.table.column.name=Name
amconfig.serverconfig.xml.server.table.column.host=Host Name
amconfig.serverconfig.xml.server.table.column.port=Port Number
amconfig.serverconfig.xml.server.table.column.type=Connection Type
amconfig.serverconfig.xml.user.header=Access Manager Repository Plug-in Configuration
amconfig.serverconfig.user.min.pool=Minimum Connection Pool
amconfig.serverconfig.user.max.pool=Maximum Connection Pool
amconfig.serverconfig.xml.user.table.header=User
amconfig.serverconfig.user.amsdkrootsuffix=Root Suffix
amconfig.serverconfig.user.adminpwd=Admin User Password
amconfig.serverconfig.user.proxypwd=Proxy User Password
amconfig.serverconfig.xml.user.table.header.noentries=There are no entries.
amconfig.serverconfig.xml.user.table.add.button=Add...
amconfig.serverconfig.xml.user.table.delete.button=Delete
amconfig.serverconfig.xml.user.table.column.name=Name
amconfig.serverconfig.xml.user.table.column.host=Host Name
amconfig.serverconfig.xml.user.table.column.port=Port Number
amconfig.serverconfig.xml.user.table.column.type=Connection Type
amconfig.serverconfig.xml.user.table.column.type.simple=Simple
amconfig.serverconfig.xml.user.table.column.type.ssl=SSL/TLS
amconfig.serverconfig.user.binddn=Bind DN
amconfig.serverconfig.user.bindpwd=Bind Password
exception.thread.pool.no.integer=Thread Pool size need an integer.
exception.cannot,delete.all.servers=Unable to delete all instances.
serverconfig.serverconfig.xml.attribute.label.name=Name
serverconfig.serverconfig.xml.attribute.label.host=Host Name
serverconfig.serverconfig.xml.attribute.label.port=Port Number
serverconfig.serverconfig.xml.attribute.label.type=Connection Type
breadcrumbs.addserver=Add Server
serverconfig.create.server.missing.atributes=Values are required for all fields.
[Empty]=[empty]
################################################################################
#
# Current Sessions
#
################################################################################
page.title.currentSessions=Sessions
label.serverName=View
button.invalidate=Invalidate Session
table.session.userid.column.name=User Id
table.session.timeleft.column.name=Time Remaining (minutes)
table.session.maxsessiontime.column.name=Max Session Time (minutes)
table.session.idletime.column.name=Time Idle(minutes)
table.session.maxidletime.column.name=Max Idle Time (minutes)
table.sessions.title.name=Sessions
table.sessions.summary=Session
table.sessions.empty.message=There are no sessions.
page.title.sessionha=Session HA
page.title.sessionha.properties=Session HA Configuration Properties
page.title.sessionha.statistics=Session HA Statistics
table.sessionha.button.new=New...
table.sessionha.button.delete=Delete
table.sessionha.name.column.name=Session HA
table.sessionha.path.column.name=Location
table.sessionha.action.column.name=Action
table.sessionha.action.edit=Edit
table.sessionha.title.name=Session HA
table.sessionha.summary=Session HA
page.title.back.sessionha.properties=Session HA Configuration Properties
page.title.back.sessionha.statistics=Session HA Statistics
################################################################################
#
# Error Messages
#
################################################################################
sizeLimitExceeded.message=Too many entries were found to display. Narrow your search criteria.
timeLimitExceeded.message=Search stopped because time limit was exceeded. Narrow your search criteria.
cannotSetAttributeDefault=Cannot set default values for attribute(s), {0}.
################################################################################
#
# Logging
#
################################################################################
realm.subrealm.created=Created Sub Realm, {0}.
realm.subrealm.deleted=Deleted Sub Realm, {0}.
idrepo.created=Created data store, {0} under realm {1}.
idrepo.deleted=Deleted data store, {0} under realm {1}.
idrepo.modified=Modified data store, {0} under realm {1}.
entity.created=Created entity, {0} of type {1} under realm {2}.
entity.deleted=Deleted entity, {0} of type {1} under realm {2}.
entity.modified=Modified entity, {0} of type {1} under realm {2}.
entity.member.added=Made entity, {0} a member of {1}.
entity.member.removed=Removed membership of entity, {0} from {1}.
realm.service.assigned=Assigned service, {0} to realm, {1}.
realm.service.unassigned=Unassigned service, {0} from realm, {1}.
realm.service.modified=Modified service, {0} in realm, {1}.
policy.policy.created=Created policy, {0} under realm, {1}.
policy.policy.modified=Modified policy, {0} under realm, {1}.
policy.policy.deleted=Deleted policy, {0} under realm, {1}.
authenticationDomain.created=Created Authentication Domain, {0}.
authenticationDomain.deleted=Deleted Authentication Domain, {0}.
authenticationDomain.modified=Modified Authentication Domain, {0}.
entityDescriptor.created=Created Entity Descriptor, {0}.
entityDescriptor.deleted=Deleted Entity Descriptor, {0}.
entityDescriptor.modified=Modified Entity Descriptor, {0}.
affiliateProfile.modified=Modified Entity Descriptor, {0}, Affiliate Descriptor, {1}.
identityProvider.created=Created Identity Provider, {0} of role. {1}.
identityProvider.modified=Modified Identity Provider, {0} of role {1}.
identityProvider.deleted=Deleted Identity Provider, {0} of role. {1}.
servicemanagement.attribute.default.modified=Modified default values of attribute, {0} for service, {1}.
destroyedSession.message=Destroyed Session for user {0}
################################################################################
#
# Authentication Pages
#
################################################################################
page.title.realm.authentication.properties=Authentication
authentication.core.properties=General
authentication.module.instances=Instances
authentication.module.configurations=Configurations
authentication.instance.table.create.button=New...
authentication.configuration.table.create.button=New...
page.title.auth.instance.create=New Module Instance
authentication.module.instance.name.label=Name
authentication.module.instance.type.label=Type
authentication.missing.instance.name=The Module Instance must have a name.
authentication.missing.instance.type=The Module Instance must have a type.
authentication.instance.create.failed=A new Module Instance could not be created.
authentication.instance.create.succeeded=A new Module Instance was created.
authentication.instance.deleted=The Module Instance was removed.
authentication.instance.deleted.multiple=The Module Instances were removed.
authentication.instance.delete.failed=An error occurred trying to remove {0} : {1}
page.title.auth.config.create=New Authentication Chain
authentication.configuration.created=A new Authentication Chain was created.
authentication.config.deleted=The Authentication Chain was deleted.
authentication.config.deleted.multiple=The Authentication Chains were deleted.
authentication.module.config.name.label=Name
page.title.auth.config.edit={0} - Properties
authentication.config.entries
authentication.config.entries.table.noentries=There are no values defined for this chain. Press the Add button to create one.
authentication.config.entry.module.column=Instance
authentication.config.entry.criteria.column=Criteria
authentication.config.entry.option.column=Options
authentication.config.entry.add.button=Add
authentication.config.entry.delete.button=Remove
authentication.config.entry.reorder.button=Reorder
authentication.config.entry.successURL=Successful Login URL
authentication.config.entry.failureURL=Failed Login URL
authentication.config.entry.postprocess.class=Post Authentication Processing Class
authentication.config.required.label=REQUIRED
authentication.config.optional.label=OPTIONAL
authentication.config.requisite.label=REQUISITE
authentication.config.sufficient.label=SUFFICIENT
authentication.config.update.suceeded=Configuration was successfully updated.
authentication.config.missing.name=Enter a name for the Authentication Configuration entry.
authentication.module.config.reorder.label=Module Instances
page.title.auth.config.reorder=Reorder Authentication Chains
no.module.instance=The selected module instance no longer exists.
#logging messages for auth pages
auth.entry.added=Added new authentication entry to {0}.
auth.entry.removed=Removed authentication entry from {0}.
named.auth.config.changed=Authentication configuration {0} was updated in {1}.
reading.named.configs={0} is reading the named configurations in {1}.
named.config.created=Created new auth configuration {0} in {1}.
################################################################################
# Agent Configuration
################################################################################
tab.configuration.agentconfig.label=Agents
tab.configuration.agentconfig.tooltip=Click to go to Agents Configuration
tab.configuration.agentconfig.status=Click to go to Agents Configuration
agenttype.WebAgent=Web
agenttype.J2EEAgent=J2EE
agenttype.SharedAgent=Agent Authenticator
agenttype.2.2_Agent=2.2 Agents
agenttype.OAuth2Client=OAuth 2.0/OpenID Connect Client
agenttype.SoapSTSAgent=SOAP STS Agent
agenttype.WebAgent.help=Web agents protect web servers such as Apache Web Server and Microsoft IIS.
agenttype.J2EEAgent.help=J2EE agents protect Java application servers such as Glassfish, IBM WebSphere Application Server and Oracle WebLogic Application Server.
agenttype.SharedAgent.help=Special type of agents with privilege to read the profiles of selected agents of other types.
agenttype.2.2_Agent.help=Agent profiles for Policy Agent version 2.2 including both Web and Java EE.
agenttype.OAuth2Client.help=OAuth 2.0 clients use access tokens issued by OpenAM to access protected resources.
agenttype.SoapSTSAgent.help=This agent corresponds to the remote SOAP STS deployment.
page.title.agents={0}
table.agents.title.name=Agent
table.agents.summary=Agent(s)
table.agents.empty.message=There are no entities.
table.agents.button.new=New...
table.agents.button.delete=Delete
table.agents.name.column.name=Name
table.agents.name.column.type=Type
table.agents.action.column.name=Action
table.agents.name.column.repo=Repository's Location
table.agents.data.repo.centralized=Central
table.agents.data.repo.localized=Local
table.agents.action.edit=Edit
page.title.agents.create=New {0}
page.title.agents.edit=Edit {0} - {1}
agents.missing.entityName={0} Name is required.
agents.message.deleted=Agent has been deleted.
agents.message.deleted.pural=Agents have been deleted.
table.agent.groups.title.name=Group
table.agent.groups.summary=Group(s)
table.agent.groups.empty.message=There are no entities.
table.agent.groups.button.new=New...
table.agent.groups.button.delete=Delete
table.agent.groups.name.column.name=Name
table.agent.groups.name.column.type=Type
table.agent.groups.members.column.name=Members
table.agent.groups.action.column.name=Action
table.agent.groups.action.edit=Edit
agent.groups.message.deleted=Agent Group has been deleted.
agent.groups.message.deleted.pural=Agent Groups have been deleted.
agentconfig.button.inherit=Inheritance Settings
agentconfig.button.dump=Export Configuration
agentconfig.button.export.policy=Export Policy
page.title.agent.config=Agent Profile
page.title.agent.inheritance=Agent Property Inheritance Setting
page.title.agent.dump=Agent Configuration Export: {0}
page.title.agent.policy.export=Agent Policy: {0}
agent.attribute.label.name=Name
agent.attribute.password=Password
agent.attribute.password.confirm=Re-Enter Password
agent.attribute.server.url.name=Server URL
agent.attribute.server.url.help=protocol://host:port/deploymentUri e.g. http://opensso.sample.com:58080/opensso
agent.attribute.agent.url.name=Agent URL
agent.attribute.J2EEagent.url.help=protocol://host:port/deploymentUri e.g. http://agent1.sample.com:1234/agentapp
agent.attribute.webagent.url.help=protocol://host:port e.g. http://agent1.sample.com:1234
agents.passwords.not.match=The passwords you entered do not match.
agents.password.blank=Password is required.
agent.attribute.label.meta.question=Configuration
agent.attribute.help.choice=Where agent properties are stored. Local is the server on which the agent is running. Centralized is the OpenAM Server
agent.attribute.option.local=Local
agent.attribute.option.centr=Centralized
agenttype.select.type=Select one of the following agent types
page.title.create.agent=New Agent
page.title.create.agent.group=New Agent Group
agentcfg.inheritance.updated=Agent Property Inheritance Setting was updated.
table.agent.inherit.inline.help=The Inheritance Settings allow you to select which default values can be overwritten for each agent. Make sure that the attributes that you wish to define for the agent are unchecked, and then click Save.
table.agent.inherit.title.name=Inheritance Setting
table.agent.inherit.summary=Inheritance Setting
table.agent.inherit.empty.message=There are no properties.
tab.label.J2EEAgent.global=Global
tab.label.J2EEAgent.application=Application
tab.label.J2EEAgent.sso=SSO
tab.label.J2EEAgent.fam=OpenAM Services
tab.label.J2EEAgent.misc=Miscellaneous
tab.label.J2EEAgent.advanced=Advanced
section.label.J2EEAgent.global.profile=Profile
section.label.J2EEAgent.global.basic=General
section.label.J2EEAgent.global.usermapping=User Mapping
section.label.J2EEAgent.global.audit=Audit
section.label.J2EEAgent.global.fqdn=Fully Qualified Domain Name Checking
section.label.J2EEAgent.application.loginprocessing=Login Processing
section.label.J2EEAgent.application.logoutprocessing=Logout Processing
section.label.J2EEAgent.application.accessdenyuriprocessing=Access Denied URI Processing
section.label.J2EEAgent.application.uriprocessing=Not Enforced URI Processing
section.label.J2EEAgent.application.ipprocessing=Not Enforced IP Processing
section.label.J2EEAgent.application.profileattrprocessing=Profile Attributes Processing
section.label.J2EEAgent.application.responseattrprocessing=Response Attributes Processing
section.label.J2EEAgent.application.commonattrfetchprocessing=Common Attributes Fetching Processing
section.label.J2EEAgent.application.sessionattrprocessing=Session Attributes Processing
section.label.J2EEAgent.application.privilegeattrprocessing=Privilege Attributes Processing
section.label.J2EEAgent.application.authprocessing=Custom Authentication Processing
section.label.J2EEAgent.sso.cookiename=Cookie Name
section.label.J2EEAgent.sso.cache=Caching
section.label.J2EEAgent.sso.cdsso=Cross Domain SSO
section.label.J2EEAgent.sso.cookiereset=Cookie Reset
section.label.J2EEAgent.fam.loginurl=Login URL
section.label.J2EEAgent.fam.logouturl=Logout URL
section.label.J2EEAgent.fam.authservices=Authentication Service
section.label.J2EEAgent.fam.policyclientservices=Policy Client Service
section.label.J2EEAgent.fam.cacheservices=User Data Cache Service
section.label.J2EEAgent.fam.clientservices=Session Client Service
section.label.J2EEAgent.misc.locale=Locale
section.label.J2EEAgent.misc.portcheckprocessing=Port Check Processing
section.label.J2EEAgent.misc.bypassprincipallist=Bypass Principal List
section.label.J2EEAgent.misc.agentencryptor=Agent Password Encryptor
section.label.J2EEAgent.misc.ignorepathinfo=Ignore Path Info
section.label.J2EEAgent.misc.deprecated=Deprecated Agent Properties
section.label.J2EEAgent.advanced.clientid=Client Identification
section.label.J2EEAgent.advanced.webserviceprocessing=Web Service Processing
section.label.J2EEAgent.advanced.agenturl=Alternate Agent URL
section.label.J2EEAgent.advanced.jboss=JBoss Application Server
section.label.J2EEAgent.advanced.xss=Cross Site Scripting Detection
section.label.J2EEAgent.advanced.pdp=Post Data Preservation
section.label.J2EEAgent.advanced.freeform=Custom Properties
tab.label.WebAgent.global=Global
tab.label.WebAgent.application=Application
tab.label.WebAgent.sso=SSO
tab.label.WebAgent.fam=OpenAM Services
tab.label.WebAgent.misc=Miscellaneous
tab.label.WebAgent.advanced=Advanced
section.label.WebAgent.global.profile=Profile
section.label.WebAgent.global.basic=General
section.label.WebAgent.global.audit=Audit
section.label.WebAgent.global.fqdn=Fully Qualified Domain Name Checking
section.label.WebAgent.application.urlprocessing=Not Enforced URL Processing
section.label.WebAgent.application.ipprocessing=Not Enforced IP Processing
section.label.WebAgent.application.profileattrprocessing=Profile Attributes Processing
section.label.WebAgent.application.responseattrprocessing=Response Attributes Processing
section.label.WebAgent.application.sessionattrprocessing=Session Attributes Processing
section.label.WebAgent.application.commonattrfetchprocessing=Common Attributes Fetching Processing
section.label.WebAgent.sso.cookie=Cookie
section.label.WebAgent.sso.cdsso=Cross Domain SSO
section.label.WebAgent.sso.cookiereset=Cookie Reset
section.label.WebAgent.fam.loginurl=Login URL
section.label.WebAgent.fam.logouturl=Logout URL
section.label.WebAgent.fam.agentlogouturl=Agent Logout URL
section.label.WebAgent.fam.policyclientservices=Policy Client Service
section.label.WebAgent.misc.locale=Locale
section.label.WebAgent.misc.anonymous=Anonymous user
section.label.WebAgent.misc.cookieprocessing=Cookie Processing
section.label.WebAgent.misc.urlhandling=URL Handling
section.label.WebAgent.misc.ignorenamingurl=Ignore Naming URL
section.label.WebAgent.misc.ignoreservercheck=Ignore Server Check
section.label.WebAgent.misc.ignorepathinfo=Ignore Path Info
section.label.WebAgent.misc.denyonlogfailure=Deny On Log Failure
section.label.WebAgent.misc.multibyteenable=Multi-byte Enable
section.label.WebAgent.misc.redirectparam=Goto Parameter Name
section.label.WebAgent.misc.deprecated=Deprecated Agent Properties
section.label.WebAgent.advanced.clientid=Client Identification
section.label.WebAgent.advanced.loadbalancer=Load Balancer
section.label.WebAgent.advanced.postdatapreserve=Post Data Preservation
section.label.WebAgent.advanced.proxy=Sun Java System Proxy Server
section.label.WebAgent.advanced.iis=Microsoft IIS Server
section.label.WebAgent.advanced.domino=IBM Lotus Domino Server
section.label.WebAgent.advanced.freeform=Custom Properties
label.agentgroup=Group
agentgroup.none=[None]
edit.agentconfig.title=Edit {0}
edit.agentconfig.group.members.title=Members of {0}
agentconfig.group.members.nomembers=There are no members.
agentconfig.btn.back=Back to Main Page
tab.general=General
tab.group=Group
agent.group.does.not.exist=Group, {0} does not exist.
################################################################################
#
# Password Reset - User Profile View
#
################################################################################
page.title.UMUserPasswordResetOptions=Password Reset Options
profile.updated=The properties were saved successfully.
table.UMUserPasswordResetOptions.title.name=Questions
table.UMUserPasswordResetOptions.empty.message=There are no questions.
table.user.password.reset.name.column.question=Question
table.user.password.reset.name.column.answer=Answer
label.question=Questions
user.password.reset.missing.personal.question.answer.message=Personal question and answer are required.
user.password.reset.missing.answer.message=Answer is required.
password.existing.label=Existing Password
password.existing.message=Type in your existing password.
password.existing.value.label=Existing Password
password.new.label=New Password
password.new.message=Type in the new password, then re-enter it.
password.new.value.label=New Password
password.new.value.confirm.label=Re-Enter Password
password.error.no.existing.password=No changes were made. You must enter your existing password.
password.error.invalid.existing.password=No changes were made. The value entered for your existing password does not match the current value.
password.error.value.mismatch=No changes were made. The passwords you entered do not match.
password.error.new.password.missing=No changes made. You must enter a value for the new password.
################################################################################
#
# User Search
#
################################################################################
page.title.search.users=Step 1 of 2: Search for Users
logicalAND.label=All
logicalOR.label=Any
search.return.field.label=Return Users By
search.user.logical.operator=Match
search.user.logical.operator.label=of the following conditions:
table.search.results.title.name=Search Results
search.results.pages=Step 2 of 2: Search Results
page.title.search.groups=Step 1 of 2: Search for Groups
search.scope.label=Scope of Search
search.scope.current=Current Organization
search.scope.sub=Current and Sub-Organizations
search.group.help.label=Enter search criteria to locate groups.
################################################################################
#
# Time zone display names. When changing/updating display names for timezone,
# please contact console team for a script to generate display name since
# display name listed in this property file must be unique.
# If the display name is same, then we append key to the display name.
# e.g: EST=Eastern Standard Time (EST)
# EST5EDT=Eastern Standard Time (EST5EDT)
#
################################################################################
ACT=Central Standard Time (Northern Territory) (ACT)
AET=Eastern Standard Time (New South Wales) (AET)
AGT=Argentine Time (AGT)
ART=Eastern European Time (ART)
AST=Alaska Standard Time (AST)
Africa/Abidjan=Greenwich Mean Time (Africa/Abidjan)
Africa/Accra=Greenwich Mean Time (Africa/Accra)
Africa/Addis_Ababa=Eastern African Time (Africa/Addis_Ababa)
Africa/Algiers=Central European Time (Africa/Algiers)
Africa/Asmera=Eastern African Time (Africa/Asmera)
Africa/Bamako=Greenwich Mean Time (Africa/Bamako)
Africa/Bangui=Western African Time (Africa/Bangui)
Africa/Banjul=Greenwich Mean Time (Africa/Banjul)
Africa/Bissau=Greenwich Mean Time (Africa/Bissau)
Africa/Blantyre=Central African Time (Africa/Blantyre)
Africa/Brazzaville=Western African Time (Africa/Brazzaville)
Africa/Bujumbura=Central African Time (Africa/Bujumbura)
Africa/Cairo=Eastern European Time (Africa/Cairo)
Africa/Casablanca=Western European Time (Africa/Casablanca)
Africa/Ceuta=Central European Time (Africa/Ceuta)
Africa/Conakry=Greenwich Mean Time (Africa/Conakry)
Africa/Dakar=Greenwich Mean Time (Africa/Dakar)
Africa/Dar_es_Salaam=Eastern African Time (Africa/Dar_es_Salaam)
Africa/Djibouti=Eastern African Time (Africa/Djibouti)
Africa/Douala=Western African Time (Africa/Douala)
Africa/El_Aaiun=Western European Time (Africa/El_Aaiun)
Africa/Freetown=Greenwich Mean Time (Africa/Freetown)
Africa/Gaborone=Central African Time (Africa/Gaborone)
Africa/Harare=Central African Time (Africa/Harare)
Africa/Johannesburg=South Africa Standard Time (Africa/Johannesburg)
Africa/Kampala=Eastern African Time (Africa/Kampala)
Africa/Khartoum=Eastern African Time (Africa/Khartoum)
Africa/Kigali=Central African Time (Africa/Kigali)
Africa/Kinshasa=Western African Time (Africa/Kinshasa)
Africa/Lagos=Western African Time (Africa/Lagos)
Africa/Libreville=Western African Time (Africa/Libreville)
Africa/Lome=Greenwich Mean Time (Africa/Lome)
Africa/Luanda=Western African Time (Africa/Luanda)
Africa/Lubumbashi=Central African Time (Africa/Lubumbashi)
Africa/Lusaka=Central African Time (Africa/Lusaka)
Africa/Malabo=Western African Time (Africa/Malabo)
Africa/Maputo=Central African Time (Africa/Maputo)
Africa/Maseru=South Africa Standard Time (Africa/Maseru)
Africa/Mbabane=South Africa Standard Time (Africa/Mbabane)
Africa/Mogadishu=Eastern African Time (Africa/Mogadishu)
Africa/Monrovia=Greenwich Mean Time (Africa/Monrovia)
Africa/Nairobi=Eastern African Time (Africa/Nairobi)
Africa/Ndjamena=Western African Time (Africa/Ndjamena)
Africa/Niamey=Western African Time (Africa/Niamey)
Africa/Nouakchott=Greenwich Mean Time (Africa/Nouakchott)
Africa/Ouagadougou=Greenwich Mean Time (Africa/Ouagadougou)
Africa/Porto-Novo=Western African Time (Africa/Porto-Novo)
Africa/Sao_Tome=Greenwich Mean Time (Africa/Sao_Tome)
Africa/Timbuktu=Greenwich Mean Time (Africa/Timbuktu)
Africa/Tripoli=Eastern European Time (Africa/Tripoli)
Africa/Tunis=Central European Time (Africa/Tunis)
Africa/Windhoek=Western African Time (Africa/Windhoek)
America/Adak=Hawaii-Aleutian Standard Time (America/Adak)
America/Anchorage=Alaska Standard Time (America/Anchorage)
America/Anguilla=Atlantic Standard Time (America/Anguilla)
America/Antigua=Atlantic Standard Time (America/Antigua)
America/Araguaina=Brazil Time (America/Araguaina)
America/Aruba=Atlantic Standard Time (America/Aruba)
America/Asuncion=Paraguay Time
America/Atka=Hawaii-Aleutian Standard Time (America/Atka)
America/Barbados=Atlantic Standard Time (America/Barbados)
America/Belem=Brazil Time (America/Belem)
America/Belize=Central Standard Time (America/Belize)
America/Boa_Vista=Amazon Standard Time (America/Boa_Vista)
America/Bogota=Colombia Time
America/Boise=Mountain Standard Time (America/Boise)
America/Buenos_Aires=Argentine Time (America/Buenos_Aires)
America/Cambridge_Bay=Mountain Standard Time (America/Cambridge_Bay)
America/Cancun=Central Standard Time (America/Cancun)
America/Caracas=Venezuela Time
America/Catamarca=Argentine Time (America/Catamarca)
America/Cayenne=French Guiana Time
America/Cayman=Eastern Standard Time (America/Cayman)
America/Chicago=Central Standard Time (America/Chicago)
America/Chihuahua=Mountain Standard Time (America/Chihuahua)
America/Cordoba=Argentine Time (America/Cordoba)
America/Costa_Rica=Central Standard Time (America/Costa_Rica)
America/Cuiaba=Amazon Standard Time (America/Cuiaba)
America/Curacao=Atlantic Standard Time (America/Curacao)
America/Danmarkshavn=Greenwich Mean Time (America/Danmarkshavn)
America/Dawson=Pacific Standard Time (America/Dawson)
America/Dawson_Creek=Mountain Standard Time (America/Dawson_Creek)
America/Denver=Mountain Standard Time (America/Denver)
America/Detroit=Eastern Standard Time (America/Detroit)
America/Dominica=Atlantic Standard Time (America/Dominica)
America/Edmonton=Mountain Standard Time (America/Edmonton)
America/Eirunepe=Acre Time (America/Eirunepe)
America/El_Salvador=Central Standard Time (America/El_Salvador)
America/Ensenada=Pacific Standard Time (America/Ensenada)
America/Fort_Wayne=Eastern Standard Time (America/Fort_Wayne)
America/Fortaleza=Brazil Time (America/Fortaleza)
America/Glace_Bay=Atlantic Standard Time (America/Glace_Bay)
America/Godthab=Western Greenland Time
America/Goose_Bay=Atlantic Standard Time (America/Goose_Bay)
America/Grand_Turk=Eastern Standard Time (America/Grand_Turk)
America/Grenada=Atlantic Standard Time (America/Grenada)
America/Guadeloupe=Atlantic Standard Time (America/Guadeloupe)
America/Guatemala=Central Standard Time (America/Guatemala)
America/Guayaquil=Ecuador Time
America/Guyana=Guyana Time
America/Halifax=Atlantic Standard Time (America/Halifax)
America/Havana=Central Standard Time (America/Havana)
America/Hermosillo=Mountain Standard Time (America/Hermosillo)
America/Indiana/Indianapolis=Eastern Standard Time (America/Indiana/Indianapolis)
America/Indiana/Knox=Eastern Standard Time (America/Indiana/Knox)
America/Indiana/Marengo=Eastern Standard Time (America/Indiana/Marengo)
America/Indiana/Vevay=Eastern Standard Time (America/Indiana/Vevay)
America/Indianapolis=Eastern Standard Time (America/Indianapolis)
America/Inuvik=Mountain Standard Time (America/Inuvik)
America/Iqaluit=Eastern Standard Time (America/Iqaluit)
America/Jamaica=Eastern Standard Time (America/Jamaica)
America/Jujuy=Argentine Time (America/Jujuy)
America/Juneau=Alaska Standard Time (America/Juneau)
America/Kentucky/Louisville=Eastern Standard Time (America/Kentucky/Louisville)
America/Kentucky/Monticello=Eastern Standard Time (America/Kentucky/Monticello)
America/Knox_IN=Eastern Standard Time (America/Knox_IN)
America/La_Paz=Bolivia Time
America/Lima=Peru Time
America/Los_Angeles=Pacific Standard Time (America/Los_Angeles)
America/Louisville=Eastern Standard Time (America/Louisville)
America/Maceio=Brazil Time (America/Maceio)
America/Managua=Central Standard Time (America/Managua)
America/Manaus=Amazon Standard Time (America/Manaus)
America/Martinique=Atlantic Standard Time (America/Martinique)
America/Mazatlan=Mountain Standard Time (America/Mazatlan)
America/Mendoza=Argentine Time (America/Mendoza)
America/Menominee=Central Standard Time (America/Menominee)
America/Merida=Central Standard Time (America/Merida)
America/Mexico_City=Central Standard Time (America/Mexico_City)
America/Miquelon=Pierre & Miquelon Standard Time
America/Monterrey=Central Standard Time (America/Monterrey)
America/Montevideo=Uruguay Time
America/Montreal=Eastern Standard Time (America/Montreal)
America/Montserrat=Atlantic Standard Time (America/Montserrat)
America/Nassau=Eastern Standard Time (America/Nassau)
America/New_York=Eastern Standard Time (America/New_York)
America/Nipigon=Eastern Standard Time (America/Nipigon)
America/Nome=Alaska Standard Time (America/Nome)
America/Noronha=Fernando de Noronha Time (America/Noronha)
America/North_Dakota/Center=Central Standard Time (America/North_Dakota/Center)
America/Panama=Eastern Standard Time (America/Panama)
America/Pangnirtung=Eastern Standard Time (America/Pangnirtung)
America/Paramaribo=Suriname Time
America/Phoenix=Mountain Standard Time (America/Phoenix)
America/Port-au-Prince=Eastern Standard Time (America/Port-au-Prince)
America/Port_of_Spain=Atlantic Standard Time (America/Port_of_Spain)
America/Porto_Acre=Acre Time (America/Porto_Acre)
America/Porto_Velho=Amazon Standard Time (America/Porto_Velho)
America/Puerto_Rico=Atlantic Standard Time (America/Puerto_Rico)
America/Rainy_River=Central Standard Time (America/Rainy_River)
America/Rankin_Inlet=Eastern Standard Time (America/Rankin_Inlet)
America/Recife=Brazil Time (America/Recife)
America/Regina=Central Standard Time (America/Regina)
America/Rio_Branco=Acre Time (America/Rio_Branco)
America/Rosario=Argentine Time (America/Rosario)
America/Santiago=Chile Time (America/Santiago)
America/Santo_Domingo=Atlantic Standard Time (America/Santo_Domingo)
America/Sao_Paulo=Brazil Time (America/Sao_Paulo)
America/Scoresbysund=Eastern Greenland Time (America/Scoresbysund)
America/Shiprock=Mountain Standard Time (America/Shiprock)
America/St_Johns=Newfoundland Standard Time (America/St_Johns)
America/St_Kitts=Atlantic Standard Time (America/St_Kitts)
America/St_Lucia=Atlantic Standard Time (America/St_Lucia)
America/St_Thomas=Atlantic Standard Time (America/St_Thomas)
America/St_Vincent=Atlantic Standard Time (America/St_Vincent)
America/Swift_Current=Central Standard Time (America/Swift_Current)
America/Tegucigalpa=Central Standard Time (America/Tegucigalpa)
America/Thule=Atlantic Standard Time (America/Thule)
America/Thunder_Bay=Eastern Standard Time (America/Thunder_Bay)
America/Tijuana=Pacific Standard Time (America/Tijuana)
America/Tortola=Atlantic Standard Time (America/Tortola)
America/Vancouver=Pacific Standard Time (America/Vancouver)
America/Virgin=Atlantic Standard Time (America/Virgin)
America/Whitehorse=Pacific Standard Time (America/Whitehorse)
America/Winnipeg=Central Standard Time (America/Winnipeg)
America/Yakutat=Alaska Standard Time (America/Yakutat)
America/Yellowknife=Mountain Standard Time (America/Yellowknife)
Antarctica/Casey=Western Standard Time (Australia) (Antarctica/Casey)
Antarctica/Davis=Davis Time
Antarctica/DumontDUrville=Dumont-d'Urville Time
Antarctica/Mawson=Mawson Time
Antarctica/McMurdo=New Zealand Standard Time (Antarctica/McMurdo)
Antarctica/Palmer=Chile Time (Antarctica/Palmer)
Antarctica/Rothera=Rothera Time
Antarctica/South_Pole=New Zealand Standard Time (Antarctica/South_Pole)
Antarctica/Syowa=Syowa Time
Antarctica/Vostok=Vostok time
Arctic/Longyearbyen=Central European Time (Arctic/Longyearbyen)
Asia/Aden=Arabia Standard Time (Asia/Aden)
Asia/Almaty=Alma-Ata Time
Asia/Amman=Eastern European Time (Asia/Amman)
Asia/Anadyr=Anadyr Time
Asia/Aqtau=Aqtau Time
Asia/Aqtobe=Aqtobe Time
Asia/Ashgabat=Turkmenistan Time (Asia/Ashgabat)
Asia/Ashkhabad=Turkmenistan Time (Asia/Ashkhabad)
Asia/Baghdad=Arabia Standard Time (Asia/Baghdad)
Asia/Bahrain=Arabia Standard Time (Asia/Bahrain)
Asia/Baku=Azerbaijan Time
Asia/Bangkok=Indochina Time (Asia/Bangkok)
Asia/Beirut=Eastern European Time (Asia/Beirut)
Asia/Bishkek=Kirgizstan Time
Asia/Brunei=Brunei Time
Asia/Calcutta=India Standard Time (Asia/Calcutta)
Asia/Choibalsan=Choibalsan Time
Asia/Chongqing=China Standard Time (Asia/Chongqing)
Asia/Chungking=China Standard Time (Asia/Chungking)
Asia/Colombo=Sri Lanka Time
Asia/Dacca=Bangladesh Time (Asia/Dacca)
Asia/Damascus=Eastern European Time (Asia/Damascus)
Asia/Dhaka=Bangladesh Time (Asia/Dhaka)
Asia/Dili=East Timor Time
Asia/Dubai=Gulf Standard Time (Asia/Dubai)
Asia/Dushanbe=Tajikistan Time
Asia/Gaza=Eastern European Time (Asia/Gaza)
Asia/Harbin=China Standard Time (Asia/Harbin)
Asia/Hong_Kong=Hong Kong Time (Asia/Hong_Kong)
Asia/Hovd=Hovd Time
Asia/Irkutsk=Irkutsk Time
Asia/Istanbul=Eastern European Time (Asia/Istanbul)
Asia/Jakarta=West Indonesia Time (Asia/Jakarta)
Asia/Jayapura=East Indonesia Time
Asia/Jerusalem=Israel Standard Time (Asia/Jerusalem)
Asia/Kabul=Afghanistan Time
Asia/Kamchatka=Petropavlovsk-Kamchatski Time
Asia/Karachi=Pakistan Time (Asia/Karachi)
Asia/Kashgar=China Standard Time (Asia/Kashgar)
Asia/Katmandu=Nepal Time
Asia/Krasnoyarsk=Krasnoyarsk Time
Asia/Kuala_Lumpur=Malaysia Time (Asia/Kuala_Lumpur)
Asia/Kuching=Malaysia Time (Asia/Kuching)
Asia/Kuwait=Arabia Standard Time (Asia/Kuwait)
Asia/Macao=China Standard Time (Asia/Macao)
Asia/Macau=China Standard Time (Asia/Macau)
Asia/Magadan=Magadan Time
Asia/Makassar=Central Indonesia Time (Asia/Makassar)
Asia/Manila=Philippines Time
Asia/Muscat=Gulf Standard Time (Asia/Muscat)
Asia/Nicosia=Eastern European Time (Asia/Nicosia)
Asia/Novosibirsk=Novosibirsk Time
Asia/Omsk=Omsk Time
Asia/Oral=Oral Time
Asia/Phnom_Penh=Indochina Time (Asia/Phnom_Penh)
Asia/Pontianak=West Indonesia Time (Asia/Pontianak)
Asia/Pyongyang=Korea Standard Time (Asia/Pyongyang)
Asia/Qatar=Arabia Standard Time (Asia/Qatar)
Asia/Qyzylorda=Qyzylorda Time
Asia/Rangoon=Myanmar Time
Asia/Riyadh87=GMT+03:07 (Asia/Riyadh87)
Asia/Riyadh88=GMT+03:07 (Asia/Riyadh88)
Asia/Riyadh89=GMT+03:07 (Asia/Riyadh89)
Asia/Riyadh=Arabia Standard Time (Asia/Riyadh)
Asia/Saigon=Indochina Time (Asia/Saigon)
Asia/Sakhalin=Sakhalin Time
Asia/Samarkand=Turkmenistan Time (Asia/Samarkand)
Asia/Seoul=Korea Standard Time (Asia/Seoul)
Asia/Shanghai=China Standard Time (Asia/Shanghai)
Asia/Singapore=Singapore Time (Asia/Singapore)
Asia/Taipei=China Standard Time (Asia/Taipei)
Asia/Tashkent=Uzbekistan Time
Asia/Tbilisi=Georgia Time
Asia/Tehran=Iran Time (Asia/Tehran)
Asia/Tel_Aviv=Israel Standard Time (Asia/Tel_Aviv)
Asia/Thimbu=Bhutan Time (Asia/Thimbu)
Asia/Thimphu=Bhutan Time (Asia/Thimphu)
Asia/Tokyo=Japan Standard Time (Asia/Tokyo)
Asia/Ujung_Pandang=Central Indonesia Time (Asia/Ujung_Pandang)
Asia/Ulaanbaatar=Ulaanbaatar Time (Asia/Ulaanbaatar)
Asia/Ulan_Bator=Ulaanbaatar Time (Asia/Ulan_Bator)
Asia/Urumqi=China Standard Time (Asia/Urumqi)
Asia/Vientiane=Indochina Time (Asia/Vientiane)
Asia/Vladivostok=Vladivostok Time
Asia/Yakutsk=Yakutsk Time
Asia/Yekaterinburg=Yekaterinburg Time
Asia/Yerevan=Armenia Time (Asia/Yerevan)
Atlantic/Azores=Azores Time
Atlantic/Bermuda=Atlantic Standard Time (Atlantic/Bermuda)
Atlantic/Canary=Western European Time (Atlantic/Canary)
Atlantic/Cape_Verde=Cape Verde Time
Atlantic/Faeroe=Western European Time (Atlantic/Faeroe)
Atlantic/Jan_Mayen=Eastern Greenland Time (Atlantic/Jan_Mayen)
Atlantic/Madeira=Western European Time (Atlantic/Madeira)
Atlantic/Reykjavik=Greenwich Mean Time (Atlantic/Reykjavik)
Atlantic/South_Georgia=South Georgia Standard Time
Atlantic/St_Helena=Greenwich Mean Time (Atlantic/St_Helena)
Atlantic/Stanley=Falkland Is. Time
Australia/ACT=Eastern Standard Time (New South Wales) (Australia/ACT)
Australia/Adelaide=Central Standard Time (South Australia) (Australia/Adelaide)
Australia/Brisbane=Eastern Standard Time (Queensland) (Australia/Brisbane)
Australia/Broken_Hill=Central Standard Time (South Australia/New South Wales) (Australia/Broken_Hill)
Australia/Canberra=Eastern Standard Time (New South Wales) (Australia/Canberra)
Australia/Darwin=Central Standard Time (Northern Territory) (Australia/Darwin)
Australia/Hobart=Eastern Standard Time (Tasmania) (Australia/Hobart)
Australia/LHI=Load Howe Standard Time (Australia/LHI)
Australia/Lindeman=Eastern Standard Time (Queensland) (Australia/Lindeman)
Australia/Lord_Howe=Load Howe Standard Time (Australia/Lord_Howe)
Australia/Melbourne=Eastern Standard Time (Victoria) (Australia/Melbourne)
Australia/NSW=Eastern Standard Time (New South Wales) (Australia/NSW)
Australia/North=Central Standard Time (Northern Territory) (Australia/North)
Australia/Perth=Western Standard Time (Australia) (Australia/Perth)
Australia/Queensland=Eastern Standard Time (Queensland) (Australia/Queensland)
Australia/South=Central Standard Time (South Australia) (Australia/South)
Australia/Sydney=Eastern Standard Time (New South Wales) (Australia/Sydney)
Australia/Tasmania=Eastern Standard Time (Tasmania) (Australia/Tasmania)
Australia/Victoria=Eastern Standard Time (Victoria) (Australia/Victoria)
Australia/West=Western Standard Time (Australia) (Australia/West)
Australia/Yancowinna=Central Standard Time (South Australia/New South Wales) (Australia/Yancowinna)
BET=Brazil Time (BET)
BST=Bangladesh Time (BST)
Brazil/Acre=Acre Time (Brazil/Acre)
Brazil/DeNoronha=Fernando de Noronha Time (Brazil/DeNoronha)
Brazil/East=Brazil Time (Brazil/East)
Brazil/West=Amazon Standard Time (Brazil/West)
CAT=Central African Time (CAT)
CET=Central European Time (CET)
CNT=Newfoundland Standard Time (CNT)
CST6CDT=Central Standard Time (CST6CDT)
CST=Central Standard Time (CST)
CTT=China Standard Time (CTT)
Canada/Atlantic=Atlantic Standard Time (Canada/Atlantic)
Canada/Central=Central Standard Time (Canada/Central)
Canada/East-Saskatchewan=Central Standard Time (Canada/East-Saskatchewan)
Canada/Eastern=Eastern Standard Time (Canada/Eastern)
Canada/Mountain=Mountain Standard Time (Canada/Mountain)
Canada/Newfoundland=Newfoundland Standard Time (Canada/Newfoundland)
Canada/Pacific=Pacific Standard Time (Canada/Pacific)
Canada/Saskatchewan=Central Standard Time (Canada/Saskatchewan)
Canada/Yukon=Pacific Standard Time (Canada/Yukon)
Chile/Continental=Chile Time (Chile/Continental)
Chile/EasterIsland=Easter Is. Time (Chile/EasterIsland)
Cuba=Central Standard Time (Cuba)
EAT=Eastern African Time (EAT)
ECT=Central European Time (ECT)
EET=Eastern European Time (EET)
EST5EDT=Eastern Standard Time (EST5EDT)
EST=Eastern Standard Time (EST)
Egypt=Eastern European Time (Egypt)
Eire=Greenwich Mean Time (Eire)
Etc/GMT+0=GMT+00:00 (Etc/GMT+0)
Etc/GMT+10=GMT-10:00
Etc/GMT+11=GMT-11:00
Etc/GMT+12=GMT-12:00
Etc/GMT+1=GMT-01:00
Etc/GMT+2=GMT-02:00
Etc/GMT+3=GMT-03:00
Etc/GMT+4=GMT-04:00
Etc/GMT+5=GMT-05:00
Etc/GMT+6=GMT-06:00
Etc/GMT+7=GMT-07:00
Etc/GMT+8=GMT-08:00
Etc/GMT+9=GMT-09:00
Etc/GMT-0=GMT+00:00 (Etc/GMT-0)
Etc/GMT-10=GMT+10:00
Etc/GMT-11=GMT+11:00
Etc/GMT-12=GMT+12:00
Etc/GMT-13=GMT+13:00
Etc/GMT-14=GMT+14:00
Etc/GMT-1=GMT+01:00
Etc/GMT-2=GMT+02:00
Etc/GMT-3=GMT+03:00
Etc/GMT-4=GMT+04:00
Etc/GMT-5=GMT+05:00
Etc/GMT-6=GMT+06:00
Etc/GMT-7=GMT+07:00
Etc/GMT-8=GMT+08:00
Etc/GMT-9=GMT+09:00
Etc/GMT0=GMT+00:00 (Etc/GMT0)
Etc/GMT=GMT+00:00 (Etc/GMT)
Etc/Greenwich=Greenwich Mean Time (Etc/Greenwich)
Etc/UCT=Coordinated Universal Time (Etc/UCT)
Etc/UTC=Coordinated Universal Time (Etc/UTC)
Etc/Universal=Coordinated Universal Time (Etc/Universal)
Etc/Zulu=Coordinated Universal Time (Etc/Zulu)
Europe/Amsterdam=Central European Time (Europe/Amsterdam)
Europe/Andorra=Central European Time (Europe/Andorra)
Europe/Athens=Eastern European Time (Europe/Athens)
Europe/Belfast=Greenwich Mean Time (Europe/Belfast)
Europe/Belgrade=Central European Time (Europe/Belgrade)
Europe/Berlin=Central European Time (Europe/Berlin)
Europe/Bratislava=Central European Time (Europe/Bratislava)
Europe/Brussels=Central European Time (Europe/Brussels)
Europe/Bucharest=Eastern European Time (Europe/Bucharest)
Europe/Budapest=Central European Time (Europe/Budapest)
Europe/Chisinau=Eastern European Time (Europe/Chisinau)
Europe/Copenhagen=Central European Time (Europe/Copenhagen)
Europe/Dublin=Greenwich Mean Time (Europe/Dublin)
Europe/Gibraltar=Central European Time (Europe/Gibraltar)
Europe/Helsinki=Eastern European Time (Europe/Helsinki)
Europe/Istanbul=Eastern European Time (Europe/Istanbul)
Europe/Kaliningrad=Eastern European Time (Europe/Kaliningrad)
Europe/Kiev=Eastern European Time (Europe/Kiev)
Europe/Lisbon=Western European Time (Europe/Lisbon)
Europe/Ljubljana=Central European Time (Europe/Ljubljana)
Europe/London=Greenwich Mean Time (Europe/London)
Europe/Luxembourg=Central European Time (Europe/Luxembourg)
Europe/Madrid=Central European Time (Europe/Madrid)
Europe/Malta=Central European Time (Europe/Malta)
Europe/Minsk=Eastern European Time (Europe/Minsk)
Europe/Monaco=Central European Time (Europe/Monaco)
Europe/Moscow=Moscow Standard Time (Europe/Moscow)
Europe/Nicosia=Eastern European Time (Europe/Nicosia)
Europe/Oslo=Central European Time (Europe/Oslo)
Europe/Paris=Central European Time (Europe/Paris)
Europe/Prague=Central European Time (Europe/Prague)
Europe/Riga=Eastern European Time (Europe/Riga)
Europe/Rome=Central European Time (Europe/Rome)
Europe/Samara=Samara Time
Europe/San_Marino=Central European Time (Europe/San_Marino)
Europe/Sarajevo=Central European Time (Europe/Sarajevo)
Europe/Simferopol=Eastern European Time (Europe/Simferopol)
Europe/Skopje=Central European Time (Europe/Skopje)
Europe/Sofia=Eastern European Time (Europe/Sofia)
Europe/Stockholm=Central European Time (Europe/Stockholm)
Europe/Tallinn=Eastern European Time (Europe/Tallinn)
Europe/Tirane=Central European Time (Europe/Tirane)
Europe/Tiraspol=Eastern European Time (Europe/Tiraspol)
Europe/Uzhgorod=Eastern European Time (Europe/Uzhgorod)
Europe/Vaduz=Central European Time (Europe/Vaduz)
Europe/Vatican=Central European Time (Europe/Vatican)
Europe/Vienna=Central European Time (Europe/Vienna)
Europe/Vilnius=Eastern European Time (Europe/Vilnius)
Europe/Warsaw=Central European Time (Europe/Warsaw)
Europe/Zagreb=Central European Time (Europe/Zagreb)
Europe/Zaporozhye=Eastern European Time (Europe/Zaporozhye)
Europe/Zurich=Central European Time (Europe/Zurich)
GB-Eire=Greenwich Mean Time (GB-Eire)
GB=Greenwich Mean Time (GB)
GMT0=GMT+00:00 (GMT0)
GMT=Greenwich Mean Time (GMT)
Greenwich=Greenwich Mean Time (Greenwich)
HST=Hawaii Standard Time (HST)
Hongkong=Hong Kong Time (Hongkong)
IET=Eastern Standard Time (IET)
IST=India Standard Time (IST)
Iceland=Greenwich Mean Time (Iceland)
Indian/Antananarivo=Eastern African Time (Indian/Antananarivo)
Indian/Chagos=Indian Ocean Territory Time
Indian/Christmas=Christmas Island Time
Indian/Cocos=Cocos Islands Time
Indian/Comoro=Eastern African Time (Indian/Comoro)
Indian/Kerguelen=French Southern & Antarctic Lands Time
Indian/Mahe=Seychelles Time
Indian/Maldives=Maldives Time
Indian/Mauritius=Mauritius Time
Indian/Mayotte=Eastern African Time (Indian/Mayotte)
Indian/Reunion=Reunion Time
Iran=Iran Time (Iran)
Israel=Israel Standard Time (Israel)
JST=Japan Standard Time (JST)
Jamaica=Eastern Standard Time (Jamaica)
Japan=Japan Standard Time (Japan)
Kwajalein=Marshall Islands Time (Kwajalein)
Libya=Eastern European Time (Libya)
MET=Middle Europe Time
MIT=West Samoa Time (MIT)
MST7MDT=Mountain Standard Time (MST7MDT)
MST=Mountain Standard Time (MST)
Mexico/BajaNorte=Pacific Standard Time (Mexico/BajaNorte)
Mexico/BajaSur=Mountain Standard Time (Mexico/BajaSur)
Mexico/General=Central Standard Time (Mexico/General)
Mideast/Riyadh87=GMT+03:07 (Mideast/Riyadh87)
Mideast/Riyadh88=GMT+03:07 (Mideast/Riyadh88)
Mideast/Riyadh89=GMT+03:07 (Mideast/Riyadh89)
NET=Armenia Time (NET)
NST=New Zealand Standard Time (NST)
NZ-CHAT=Chatham Standard Time (NZ-CHAT)
NZ=New Zealand Standard Time (NZ)
Navajo=Mountain Standard Time (Navajo)
PLT=Pakistan Time (PLT)
PNT=Mountain Standard Time (PNT)
PRC=China Standard Time (PRC)
PRT=Atlantic Standard Time (PRT)
PST8PDT=Pacific Standard Time (PST8PDT)
PST=Pacific Standard Time (PST)
Pacific/Apia=West Samoa Time (Pacific/Apia)
Pacific/Auckland=New Zealand Standard Time (Pacific/Auckland)
Pacific/Chatham=Chatham Standard Time (Pacific/Chatham)
Pacific/Easter=Easter Is. Time (Pacific/Easter)
Pacific/Efate=Vanuatu Time
Pacific/Enderbury=Phoenix Is. Time
Pacific/Fakaofo=Tokelau Time
Pacific/Fiji=Fiji Time
Pacific/Funafuti=Tuvalu Time
Pacific/Galapagos=Galapagos Time
Pacific/Gambier=Gambier Time (Pacific/Gambier)
Pacific/Guadalcanal=Solomon Is. Time (Pacific/Guadalcanal)
Pacific/Guam=Chamorro Standard Time (Pacific/Guam)
Pacific/Honolulu=Hawaii Standard Time (Pacific/Honolulu)
Pacific/Johnston=Hawaii Standard Time (Pacific/Johnston)
Pacific/Kiritimati=Line Is. Time
Pacific/Kosrae=Kosrae Time
Pacific/Kwajalein=Marshall Islands Time (Pacific/Kwajalein)
Pacific/Majuro=Marshall Islands Time (Pacific/Majuro)
Pacific/Marquesas=Marquesas Time
Pacific/Midway=Samoa Standard Time (Pacific/Midway)
Pacific/Nauru=Nauru Time
Pacific/Niue=Niue Time
Pacific/Norfolk=Norfolk Time
Pacific/Noumea=New Caledonia Time
Pacific/Pago_Pago=Samoa Standard Time (Pacific/Pago_Pago)
Pacific/Palau=Palau Time
Pacific/Pitcairn=Pitcairn Standard Time (Pacific/Pitcairn)
Pacific/Ponape=Ponape Time
Pacific/Port_Moresby=Papua New Guinea Time
Pacific/Rarotonga=Cook Is. Time
Pacific/Saipan=Chamorro Standard Time (Pacific/Saipan)
Pacific/Samoa=Samoa Standard Time (Pacific/Samoa)
Pacific/Tahiti=Tahiti Time
Pacific/Tarawa=Gilbert Is. Time
Pacific/Tongatapu=Tonga Time
Pacific/Truk=Truk Time
Pacific/Wake=Wake Time
Pacific/Wallis=Wallis & Futuna Time
Pacific/Yap=Yap Time
Poland=Central European Time (Poland)
Portugal=Western European Time (Portugal)
ROK=Korea Standard Time (ROK)
SST=Solomon Is. Time (SST)
Singapore=Singapore Time (Singapore)
SystemV/AST4=Atlantic Standard Time (SystemV/AST4)
SystemV/AST4ADT=Atlantic Standard Time (SystemV/AST4ADT)
SystemV/CST6=Central Standard Time (SystemV/CST6)
SystemV/CST6CDT=Central Standard Time (SystemV/CST6CDT)
SystemV/EST5=Eastern Standard Time (SystemV/EST5)
SystemV/EST5EDT=Eastern Standard Time (SystemV/EST5EDT)
SystemV/HST10=Hawaii Standard Time (SystemV/HST10)
SystemV/MST7=Mountain Standard Time (SystemV/MST7)
SystemV/MST7MDT=Mountain Standard Time (SystemV/MST7MDT)
SystemV/PST8=Pitcairn Standard Time (SystemV/PST8)
SystemV/PST8PDT=Pacific Standard Time (SystemV/PST8PDT)
SystemV/YST9=Gambier Time (SystemV/YST9)
SystemV/YST9YDT=Alaska Standard Time (SystemV/YST9YDT)
Turkey=Eastern European Time (Turkey)
UCT=Coordinated Universal Time (UCT)
US/Alaska=Alaska Standard Time (US/Alaska)
US/Aleutian=Hawaii-Aleutian Standard Time (US/Aleutian)
US/Arizona=Mountain Standard Time (US/Arizona)
US/Central=Central Standard Time (US/Central)
US/East-Indiana=Eastern Standard Time (US/East-Indiana)
US/Eastern=Eastern Standard Time (US/Eastern)
US/Hawaii=Hawaii Standard Time (US/Hawaii)
US/Indiana-Starke=Eastern Standard Time (US/Indiana-Starke)
US/Michigan=Eastern Standard Time (US/Michigan)
US/Mountain=Mountain Standard Time (US/Mountain)
US/Pacific-New=Pacific Standard Time (US/Pacific-New)
US/Pacific=Pacific Standard Time (US/Pacific)
US/Samoa=Samoa Standard Time (US/Samoa)
UTC=Coordinated Universal Time (UTC)
Universal=Coordinated Universal Time (Universal)
VST=Indochina Time (VST)
W-SU=Moscow Standard Time (W-SU)
WET=Western European Time (WET)
Zulu=Coordinated Universal Time (Zulu)
##############################################################
# DO NOT NEED TO LOCALIZE THESE. THEY ARE SUPPOSED TO BE BLANK
##############################################################
blank.header=
entityDescriptor.profile.sectionHeader=
contactperson.profile=
#################################################################################
#
# Common Task
#
################################################################################
click.to.see.info=Click to see more information
commontask.label.create.hosted.idp=Create Hosted Identity Provider
commontask.create.hosted.idp=This allows you to configure this instance of OpenAM server as an Identity Provider (IDP). You need three things: Name, Circle of Trust (COT) and optionally Signing Certificate. Metadata represents the configuration necessary to execute federation protocols (eg SAMLv2) as well as the mechanism to communicate this configuration to other entities (eg SPs) in a COT. A COT is a group of IDPs and SPs that trust each other and in effect represents the confines within which all federation communications are performed.
commontask.label.create.hosted.sp=Create Hosted Service Provider
commontask.create.hosted.sp=This allows you to configure this instance of OpenAM server as an Service Provider (SP). You need three things: Name, Circle of Trust (COT). Metadata represents the configuration necessary to execute federation protocols (eg SAMLv2) as well as the mechanism to communicate this configuration to other entities (eg IDPs) in a COT. A COT is a group of IDPs and SPs that trust each other and in effect represents the confines within which all federation communications are performed.
commontask.label.create.remote.idp=Configure Remote Identity Provider
commontask.create.remote.idp=This allows you to register a remote Identity Provider (IDP). You need two things: Circle of Trust (COT). Metadata represents the configuration necessary to execute federation protocols (eg SAMLv2) as well as the mechanism to communicate this configuration to other entities (eg SPs) in a COT. A COT is a group of IDPs and SPs that trust each other and in effect represents the confines within which all federation communications are performed.
commontask.label.create.remote.sp=Configure Remote Service Provider
commontask.create.remote.sp=This allows you to register a remote Service Provider (SP). You need two things: Circle of Trust (COT). Metadata represents the configuration necessary to execute federation protocols (eg SAMLv2) as well as the mechanism to communicate this configuration to other entities (eg SPs) in a COT. A COT is a group of IDPs and SPs that trust each other and in effect represents the confines within which all federation communications are performed.
commontask.label.create.fedlet=Create Fedlet Configuration
commontask.create.fedlet=Fedlet is ideal for an identity provider that needs to enable a service provider that does not have any kind of federation solution in place. A Fedlet is a very small zip file that you can provide a service provider so they can instantaneously federate with you. The service provider simply adds the Fedlet to their application, deploys their application and they are federation enabled.
page.title.common.tasks.section.configure.social.authn=Configure Social Authentication
page.title.common.tasks.section.desc.configure.social.authn=Add social authentication options per realm. This task configures authentication through third parties such as Facebook, Google and Microsoft.
commontask.label.configure.facebook.authn=Configure Facebook Authentication
commontask.configure.facebook.authn=This task guides you through the process of adding Facebook as an authentication option for a particular realm. Once configured, the OpenAM login page for the chosen realm will include a link to authenticate using a Facebook account.
commontask.label.configure.google.authn=Configure Google Authentication
commontask.configure.google.authn=This task guides you through the process of adding Google as an authentication option for a particular realm. Once configured, the OpenAM login page for the chosen realm will include a link to authenticate using a Google account.
commontask.label.configure.microsoft.authn=Configure Microsoft Authentication
commontask.configure.microsoft.authn=This task guides you through the process of adding Microsoft as an authentication option for a particular realm. Once configured, the OpenAM login page for the chosen realm will include a link to authenticate using a Microsoft account.
commontask.label.configure.other.social.authn=Configure Other Authentication
commontask.configure.other.social.authn=This task guides you through the process of adding another third party as an authentication option for a particular realm. Once configured, the OpenAM login page for the chosen realm will include a link to authenticate using an account held with this third party.
commontask.label.saml2.validate=Test Federation Connectivity
commontask.saml2.validate=Whether you have just set up your Federated accounts or are interested in troubleshooting an issue with your existing accounts, this test will show you if the connections are being made successfully or identify where the troubles are located.
commontask.label.doc=Get Product Documentation
commontask.doc=This link launches the OpenAM product documentation page. For additional information, visit the OpenAM community site at http://openam.forgerock.org/ and the OpenAM Wiki at https://wikis.forgerock.org/confluence/display/OPENAM/Home
commontask.label.register.product=Register This Product
commontask.register.product=This allows you to register this OpenAM Product to Sun Connection. You must have a Sun Online Account in order to complete the registration. If you do not already have one, you may request one as part of this process.
page.title.common.tasks.section.configure.google.apps=Configure Google Apps
commontask.label.configure.google.apps=Configure Google Apps
page.title.common.tasks.section.desc.configure.google.apps=Integrate OpenAM with Google Apps web applications to create a single sign-on environment. Before beginning, a hosted identity provider and Circle of Trust must be configured.
commontask.configure.google.apps=For instructions on integrating Google Apps with OpenAM, see https://wikis.forgerock.org/confluence/display/openam/Integrate+With+Google+Apps
commontask.label.create.soap.sts.deployment=Create A Soap STS Deployment
commontask.create.soap.sts.deployment=Create A Soap STS Deployment corresponding to a soap STS agent in a specific realm. Before beginning, a directory with the name of soapstsdeployment must be created in the OpenAM config directory, and the openam-soap-sts-server*.war file which will be the basis for the agent-specific .war file copied into this directory. In addition, any custom wsdl files specified in soap-sts instances published to the realm in question must be in the soapstsdeployment directory, as well as any keystore specified in the 'Soap Keystore Configuration' Admin UI section of the soap-STS instances published in this realm.
configure.google.apps.label.domain.id=Domain Name
configure.google.apps.help.domainName=This is the primary domain you have registered at Google Apps. Example: domain.com
create.google.apps.missing.cot=Unable to configure because there are no circle of trust with Identity Provider.
configure.google.apps.label.realm=Realm
configure.google.apps.label.cot=Circle of Trust
configure.google.apps.label.idp=Identity Provider
configure.google.apps.section.setup=Configure the Remote SP
configure.google.apps.section.idp.setup=Configure the IDP
configure.google.apps.help.domainName.msg1=If you do not already have a Google Apps account, you must create one now.
configure.google.apps.help.domainName.msg2=Go to <a href="http://www.google.com/apps/intl/en/business/index.html" target="_blank" >http://www.google.com/apps/intl/en/business/index.html</a>, and follow the instructions for creating a Premier Edition Account.
configure.google.apps.help.message=
page.title.configure.google.apps=Configure Google Apps for Single Sign-On
configure.google.apps.entity.exist=A google.com entity already exists. Go to the Federation tab, and delete the existing google.com entity. Then you return to the Configure Google Apps workflow to reconfigure it.
configuring.google.apps.waiting=Configuring the meta. Please wait...
google.apps.configured.msg=Metadata now configured successfully. Click OK to retrieve the parameters for configuring the Service Provider.
page.desc.configure.google.apps=You must provide Identity Provider and remote Service Provider information before the metadata can be configured. OpenAM acts as the Identity Provider, and Google Apps acts as the Service Provider. SAMLv2 is the single sign-on protocol for creating a circle of trust at the Identity Provider.
configure.google.apps.complete.label.name=Google Apps Single Sign-On Configuration
configure.google.apps.complete.label.description=You must supply the following information to Google Apps when you configure Google Apps Single Sign-On. Save these URLs and Verification Certificate information before proceeding to Google Apps Single Sign-On setup.
configure.google.apps.complete.url.section=URLs
configure.google.apps.complete.label.SigninPageURL=Sign-in Page URL
configure.google.apps.complete.help.SigninPageURL=URL for signing in to OpenAM and Google Apps
configure.google.apps.complete.label.SignoutPageURL=Sign-out Page URL
configure.google.apps.complete.help.SignoutPageURL=URL to refirect users to when they sign out
configure.google.apps.complete.label.ChangePasswordURL=Change Password URL
configure.google.apps.complete.help.ChangePasswordURL=URL to let users change their password in OpenAM
configure.google.apps.complete.certificate.section=Verification Certificate
configure.google.apps.complete.label.PubKey=Verification Certificate
configure.google.apps.complete.help.PubKey=Copy this text to a text file, and upload the new text file to the Google Apps Verification Certificate.
configure.google.apps.complete.certificate.download=Click here to download
configure.google.apps.complete.certificate.download.error=An error occurred while downloading Verification Certificate.
configure.google.apps.complete.instruction.section=To Enable Access to the Google Apps API:
configure.google.apps.complete.step1=1. Click a domain name in the following list to open the Google Apps administration page in a new browser window.
configure.google.apps.complete.urllist=<a href="https://www.google.com/a/{0}/" target="_blank"> {1}</a></br>
configure.google.apps.complete.step2=2. Log in to your Google dashboard as a Google Apps administrator.
configure.google.apps.complete.step3=3. Click the Advanced Tools tab, and then click the "Set up Single Sign-on (SSO)" link.
configure.google.apps.complete.step4=4. Mark the "Enable Single Sign-On" checkbox.
configure.google.apps.complete.step5=5. Copy the URLs from OpenAM (above) and paste them into the Google Apps setup screen.
configure.google.apps.complete.step6=6. Copy the Verification Certificate text into a file, and upload the new text file to the Google Apps Verification Certificate.
configure.google.apps.complete.step7=7. Mark the "Use a domain specific issuer" checkbox.
configure.google.apps.complete.step8=8. Save the changes in the Google Apps setup screen.
configure.google.apps.complete.step.others=If you have configured multiple domains, then you must enable access for each domain you have configured. Repeat steps 1 to 8 above until all domains have been configured.
##Common Task - Salesforce CRM
complete.create.host.idp.create.salesforce.title=Configure Salesforce CRM
complete.create.host.idp.create.salesforce.text=Use this workflow to integrate the Salesforce CRM in an OpenAM single sign-on environment. You can <a href="javascript:configureSalesForceApps()">configure Salesforce CRM as a service provider now</a> or configure it later using the link on the Common Tasks page.
page.title.common.tasks.section.configure.salesforce.apps=Configure Salesforce CRM
commontask.label.configure.salesforce.apps=Configure Salesforce CRM
page.title.common.tasks.section.desc.configure.salesforce.apps=Integrate OpenAM with Salesforce CRM to create a single sign-on environment. Before beginning, a SAMLv2 hosted identity provider and Circle of Trust must be configured.
commontask.configure.salesforce.apps=See the OpenAM Wiki for more information.
salesforce.link=Salesforce
configure.salesforce.attributesmapping.title= Remote to Local Attribute Mapping Table
configure.salesforce.apps.complete.details=You can configure single sign-on between this instance of OpenAM and a Salesforce CRM account with different user identifiers. These identifiers are defined in the Salesforce CRM account and mapped using OpenAM.<br /><br />Follow the procedure below to identify the user with the Federation ID from the User object in an Assertion located in an Attribute element. Make sure the attribute chosen as the value of the user's "Federation Id" in the Salesforce account configuration matches the attribute selected as the Local Attribute Name in the Remote to Local Attribute Mapping Table of the OpenAM Salesforce CRM Common Task.<br /> <br />See the Salesforce CRM documentation to use a Salesforce user name as the user identifier or if the user identifier is located in the NameIdentifier element of the Subject statement (rather than an Attribute element).
create.salesforce.apps.missing.cot=Unable to configure because there are no circle of trust with Identity Provider.
configure.salesforce.apps.label.salesforceSPId=Salesforce Service Provider entityID
configure.salesforce.apps.help.salesforceSPId=Please enter the entityID for the Salesforce Service Provider
configure.salesforce.apps.label.realm=Realm
configure.salesforce.apps.label.cot=Circle of Trust
configure.salesforce.apps.label.idp=Identity Provider
configure.salesforce.apps.section.setup=Configure the Remote SP
configure.salesforce.apps.section.idp.setup=Configure the IDP
configure.salesforce.apps.help.domainName.msg1=If you do not have a Salesforce CRM account, you must create one now.
configure.salesforce.apps.help.domainName.msg2=Go to <a href="http://www.salesforce.com/apps/intl/en/business/index.html" target="_blank" >http://www.salesforce.com/apps/intl/en/business/index.html</a>, and follow the instructions for creating a Premier Edition Account.
configure.salesforce.apps.help.message=
page.title.configure.salesforce.apps=Configure Salesforce CRM for Single Sign-On
configuring.salesforce.apps.waiting=Configuring the meta. Please wait...
salesforce.apps.configured.msg=Metadata now configured successfully. Click OK to retrieve the parameters for configuring the Service Provider.
page.desc.configure.salesforce.apps=You must provide SAMLv2 identity provider and service provider information to configure a circle of trust. OpenAM acts as the identity provider and Salesforce acts as the service provider. This configuration requires mapping of one attribute on the OpenAM side to one attribute on the Salesforce side.
configure.salesforce.apps.complete.label.name=Salesforce CRM Single Sign-On Configuration
configure.salesforce.apps.complete.label.description=Configure your Salesforce.com account using the following information.
configure.salesforce.apps.complete.label.issuerid=Issuer
configure.salesforce.apps.complete.label.AttributeName=Attribute Name
configure.salesforce.apps.help.attributeName=Type the Sales force attribute and select the OpenAM attribute from the drop down list. You may type an OpenAM attribute not in the drop down list as long as it is defined in the identity data store configured for OpenAM.
configure.salesforce.apps.complete.help.IssuerID=Copy this value to the Issuer field of the account's single sign-on settings at Salesforce.com
configure.salesforce.apps.complete.help.AttributeName= Copy this value to the Attribute Name field of the account's single sign-on settings at Salesforce.com
configure.salesforce.apps.complete.values.section=Copy these values over to Salesforce
configure.salesforce.apps.complete.certificate.section=Verification Certificate
configure.salesforce.apps.complete.label.PubKey=Verification Certificate
configure.salesforce.apps.complete.help.PubKey=Save the Verfication Certificate information to a plain text file before uploading it as the Identity Provider Certificate at Salesforce.com.
configure.salesforce.apps.complete.certificate.download=Click here to download
configure.salesforce.apps.complete.certificate.download.error=An error occurred while downloading Verification Certificate.
configure.salesforce.apps.complete.instruction.section=To Enable Access to the Salesforce CRM:
configure.salesforce.apps.complete.urllist=<a href="https://login.salesforce.com/" target="_blank"> {0}</a></br>
create.salesforce.apps.finish.message=A valid Salesforce Login URL has not been provided. Without this information, the single sign-on configuration has not been completed. To add this URL, change and save the value of the Assertion Consumer Service Location attribute for the Salesforce service provider entity created using the OpenAM console. This is under the Federation tab.
configure.salesforce.apps.complete.step1=1. Click the Salesforce link to open the application's single sign-on set up page in a new browser window.
configure.salesforce.apps.complete.step2=2. Log in with your administrator user name and password. If you do not have an administrator account, create one.
configure.salesforce.apps.complete.step3=3. Click on the "Setup" link at the top of the Salesforce landing page.
configure.salesforce.apps.complete.step4=4. Click on "Single Sign-On Settings", under "Administartion Setup" -> "Security Controls" on the left side of the Salesforce page.
configure.salesforce.apps.complete.step5=5. Click on the "Edit" button under "Single Sign-On Settings".
configure.salesforce.apps.complete.step6=6. Check the "SAML Enabled" box.
configure.salesforce.apps.complete.step7=7. Choose SAML Version as 2.0
configure.salesforce.apps.complete.step8=8. Copy the issuer name generated below to the Issuer field on the Salesforce CRM set up page.
configure.salesforce.apps.complete.step9=9. Copy, paste and save the Verification Certificate text generated below into a plain text file.
configure.salesforce.apps.complete.step10=10. Upload the Verification Certificate text file as the Identity Provider Certificate on the Salesforce CRM set up page.
configure.salesforce.apps.complete.step11=11. Choose the "Assertion contains the Federation ID from the User object" option as the value for the "SAML User ID Type" field.
configure.salesforce.apps.complete.step12=12. Choose the "User ID is in an Attribute element" option as the value for the "SAML User ID Location" field.
configure.salesforce.apps.complete.step13=13. One of the attributes below should identify the Federation Id and configured on the Salesforce CRM set up page.
configure.salesforce.apps.complete.step14=14. Leave the NameID Format field empty.
configure.salesforce.apps.complete.step15=15. Save your changes. A "Salesforce Login URL" will be displayed on the Salesforce CRM screen.
configure.salesforce.apps.complete.step16=16. Copy and paste the "Salesforce Login URL" into the textbox below. This value will be used as the new value for the Assertion Consumer Service Location attribute of the Salesforce service provider entity created using the OpenAM console.
configure.salesforce.apps.complete.step17=17. Click on "Users", under "Administration Setup" -> "Manage Users" on the left side of the Salesforce page.
configure.salesforce.apps.complete.step18=18. Add new users if necessary. Make sure the attribute chosen as the value of the user's "Federation Id" matches the attribute selected as the Local Attribute Name in the Remote to Local Attribute Mapping Table of the OpenAM Salesforce Common Task.
## Social Authentication Tasks
page.title.configure.social.authentication=Configure Social Authentication
page.desc.configure.social.authentication=Configure a social authentication provider via OpenID Connect.
configure.social.authentication.title.message=Configure {0} Authentication
configure.social.authentication.help.message=Configure authentication using {0} as an identity provider.
configure.social.authentication.section.realm=Realm
configure.social.authentication.section.provider=Provider Details
configure.social.authentication.section.setup=Client Details
configure.social.authentication.label.realm=Realm
configure.social.authentication.label.client.id=Client ID
configure.social.authentication.client.id.help.txt=For more information on the OAuth client_id parameter refer to the \
<a href="http://tools.ietf.org/pdf/draft-ietf-oauth-v2-12.pdf" target="_blank">OAuth IETF draft</a>, chapter 2.1
configure.social.authentication.label.client.secret=Client Secret
configure.social.authentication.client.secret.help.txt=For more information on the OAuth client_secret parameter refer \
to the <a href="http://tools.ietf.org/pdf/draft-ietf-oauth-v2-12.pdf" target="_blank">OAuth IETF draft</a>, chapter \
2.1
configure.social.authentication.label.confirm.secret=Confirm Client Secret
configure.social.authentication.label.redirect.url=Redirect URL
configure.social.authentication.redirect.url.help.txt=This URL should only be changed from the default, if an external \
server is performing the GET to POST proxying. The default is <code>/openam/oauth2c/OAuthProxy.jsp</code>
configure.social.authentication.label.discovery.url=OpenID Discovery URL
configure.social.authentication.discovery.url.help.txt=For more information on the Discovery Document \
URL, refer to the <a href="http://openid.net/specs/openid-connect-discovery-1_0.html" target="_blank">OpenID Connect \
Discovery 1.0 Specification</a>
configure.social.authentication.label.provider.name=Provider Name
configure.social.authentication.provider.name.help.txt=Name of the Social Authentication Provider to display to users \
on the login page.
configure.social.authentication.label.image.url=Image URL/Path
configure.social.authentication.image.url.help.txt=A path to a logo image to display to users on the login page. \
Must be an absolute URL or relative path. e.g. /openam/XUI/images/logos/googleplus.png or http://example.com/myimage.png
configure.social.authentication.success=Social Authentication Provider Successfully Configured
## Social AuthN Providers
social.authentication.provider.facebook=Facebook
configure.social.authentication.help.facebook=Configure Social Authentication using Facebook as the identity provider. \
Use the <a href="https://developers.facebook.com/quickstarts/?platform=web" target="_blank">Facebook App Quickstart</a> to register \
your application with Facebook. Once registered, enter the App ID and App Secret fields from the developer dashboard \
into the Client ID and Client Secret fields below to complete the configuration.
social.authentication.provider.google=Google
configure.social.authentication.help.google=Configure Social Authentication using Google as the identity provider. \
Use the <a href="https://console.developers.google.com/project" target="_blank">Google Developers Console</a> to register your \
application with Google. Once created, select "Credentials" in the "APIs & auth" section and then click the \
"Create new Client ID" button under "OAuth" to be guided through creating an OAuth 2.0 client ID. Once created, \
copy the CLIENT ID and CLIENT SECRET values into the respective fields below to complete the configuration.
social.authentication.provider.microsoft=Microsoft
configure.social.authentication.help.microsoft=Configure Social Authentication using Microsoft. Follow \
<a href="http://msdn.microsoft.com/en-us/library/dn659750.aspx" target="_blank">Microsoft's guide on Signing in with REST</a> to \
generate a Client ID. Once created, copy the Client ID and Client Secret values into the fields below to complete \
the configuration.
## Soap STS Deployment Creation Entries
# keys referenced in propertyCreateSoapSTSDeployment.xml
create.soap.sts.deployment.section.config=Soap STS Deployment Configuration
create.soap.sts.deployment.label.realm=Realm of Soap STS Deployment
create.soap.sts.deployment.realm.help=Must match the realm of the Soap STS agent
create.soap.sts.deployment.label.openam.url=OpenAM URL
create.soap.sts.deployment.openam.url.help=Site/Server URL which the Soap STS will use to obtain published Soap STS instance state.
create.soap.sts.deployment.label.soap.agent.name=Soap STS Agent Name
create.soap.sts.deployment.soap.agent.name.help=Value must match name of Soap STS agent in this realm
create.soap.sts.deployment.label.soap.agent.password=Soap STS Agent Password
create.soap.sts.deployment.soap.agent.password.help=Value must match password of Soap STS agent in this realm
create.soap.sts.deployment.label.soap.agent.password.confirm=Confirm Soap STS Agent Password
create.soap.sts.deployment.label.soap.agent.retry.number=Soap STS Agent Token Retry Number
create.soap.sts.deployment.soap.agent.retry.number.help=Number of times Soap STS server will try to get new agent token.
create.soap.sts.deployment.label.soap.agent.retry.initial.interval=Soap STS Agent Token Retry Initial Interval
create.soap.sts.deployment.soap.agent.retry.initial.interval.help=Initial interval in milliseconds Soap STS server will wait for first retry.
create.soap.sts.deployment.label.soap.agent.retry.multiplier=Soap STS Agent Token Retry Interval Multiplier
create.soap.sts.deployment.soap.agent.retry.multiplier.help=Rety interval multiplier value (Default is 1.5 which means 50% increase in interval per retry).
create.soap.sts.deployment.label.custom.wsdl.file.names=Custom wsdl file names
create.soap.sts.deployment.custom.wsdl.file.names.help=If any of the Soap STS instances published in the realm reference custom \
wsdl files, these files must be specified here.
create.soap.sts.deployment.custom.wsdl.file.names.help.txt=The custom wsdl files will be deposited in the WEB-INF/classes directory of the deployment .war. \
They must be placed in the soapstsdeployment subdirectory of the OpenAM config directory so that they can be included in the generated .war.
create.soap.sts.deployment.label.keystore.file.names=KeyStore file names
create.soap.sts.deployment.keystore.file.names.help=Any KeyStores configured in the Soap Keystore Configuration section of \
any Soap STS instances published in this realm must be specified here.
create.soap.sts.deployment.keystore.file.names.help.txt=The KeyStore files will be deposited in the WEB-INF/classes directory of \
the deployment .war. They must be placed in the soapstsdeployment subdirectory of the OpenAM config directory so that they can be \
included in the generated .war.
# keys referenced in the CreateSoapSTSDeployment.jsp
page.title.configure.soapstsdeployment=Configure a Soap STS Deployment
page.desc.configure.soapstsdeployment=This page will provide the configuration state necessary to create a opeanam-soap-sts-server \
.war file specific to a given realm.
configuring.soapstsdeployment.waiting=Please wait while the Soap STS Deployment .war is created.
soapstsdeployment.configured.title=A Soap STS agent specific .war file has been created.
##############################################################
tab.federation.label=Federation
tab.federation.tooltip=Click to go to Federation
tab.federation.status=Federation Properties View
tab.webservices.label=Web Services
tab.webservices.tooltip=Click to go to Web Services
tab.webservices.status=Click to go to Web Services
tab.webservices.personalprofile.label=Personal Profile
tab.webservices.personalprofile.tooltip=Click to go to Personal Profile Service
tab.webservices.personalprofile.status=Click to go to Personal Profile Service
tab.webservices.discoveryservice.label=Discovery Service
tab.webservices.discoveryservice.tooltip=Click to go to Discovery Service
tab.webservices.discoveryservice.status=Click to go to Discovery Service
tab.webservices.soapbidingservice.label=SOAP Binding Service
tab.webservices.soapbidingservice.tooltip=Click to go to SOAP Binding Service
tab.webservices.soapbidingservice.status=Click to go to SOAP Binding Service
tab.webservices.authentication.label=Authentication Web Service
tab.webservices.authentication.tooltip=Click to go to Authentication Web Service
tab.webservices.authentication.status=Click to go to Authentication Web Service
tab.webservices.LibertyIDWSFSecurityService.label=Liberty ID-WSF Security Service
tab.webservices.LibertyIDWSFSecurityService.tooltip=Click to go to Liberty ID-WSF Security Service
tab.webservices.LibertyIDWSFSecurityService.status=Click to go to SLiberty ID-WSF Security Service
tab.webservices.LibertyInteractionService.label=Liberty Interaction Service
tab.webservices.LibertyInteractionService.tooltip=Click to go to Liberty Interaction Service
tab.webservices.LibertyInteractionService.status=Click to go to Liberty Interaction Service
tab.webservices.SecurityTokenService.label=Security Token Service
tab.webservices.SecurityTokenService.tooltip=Click to go to Security Token Service
tab.webservices.SecurityTokenService.status=Click to go to Security Token Service
#################################################################################
#
# Main Federation View
#
################################################################################
# COT Properties
cot.configuration.section=Circle of Trust Configuration
cot.table.help.message=This section can be used to configure the properties for a Circle of Trust. The Entities table can be used for managing entity providers including importing and exporting of providers. Entities can be added to a Circle of Trust after they are created in the Entities table.
cot.table.title=Circle of Trust
cot.new.button=New...
cot.delete.button=Delete
cot.name.column.label=Name
cot.entity.column.label=Entities
cot.realm.column.label=Realm
cot.status.column.label=Status
cot.empty.table.message=There are no COT's available. Select the New... button to create one.
# Entity Properties
entity.table.title=Entity Providers
entity.new.button=New...
entity.delete.button=Delete
entity.import.button=Import Entity...
entity.name.column.label=Name
entity.protocol.column.label=Protocol
entity.role.column.label=Type
entity.location.column.label=Location
entity.realm.column.label=Realm
entity.empty.table.message=There are no entities available. Select the New... button to create one.
more.actions.label=- More Actions -
separator.label=----------------
add.sp.label=Add Service Provider
add.idp.label=Add Identity Provider
remove.sp.label=Remove Service Provider
remove.idp.label=Remove Identity Provider
export.entity.label=Export Entity
# SAML Trusted Partner Properties
saml1x.configuration.section=SAML 1.x Configuration
saml.locale.site.button=Local Site Properties
saml.table.title=Trusted Partners
saml.table.help.message=This section will be used to configure the properties defining a SAML1.x SSO Circle. Use the 'Local Site Properties' button to access the configuration properties of the local site. Trusted Partner information can be added to the table below.
saml.new.button=New...
saml.delete.button=Delete
saml.name.column.label=Name
saml.empty.table.message=There are no trusted partners configured. Select the New... button to create one.
saml.trusted.partner.source.column.label=Source Profile
saml.trusted.partner.destination.column.label=Destination Profile
################################################################################
#
# SAML Service
#
################################################################################
page.title.SAML.profile=Local Site Properties
saml.profile.properties.target.specifier.help=This attribute assigns a name to the destination site URL used in SAML redirects.
saml.profile.properties.siteid.help=This attribute defines any site hosted by the server on which OpenAM is installed. A default value and an automatically generated Site ID are defined for the host during installation (with values retrieved from AMConfig.properties). Multiple entries are possible. For example, load balancing or multiple instances of OpenAM sharing the same Directory Server would all need to be defined. The starting point is the Site Identifiers attribute on the SAML screen under the Federation interface.
saml.profile.properties.targeturl.help=The following subattributes can be defined (or modified) for each Target URL that will receive assertions via POST.
saml.profile.properties.header=Properties
saml.profile.assertion.header=Assertion
saml.profile.assertion.version=Default Assertion Version
saml.profile.assertion.help.version=Default value is 1.1. Specifies default SAML version used. Possible values are 1.0 or 1.1.
saml.profile.assertion.version.1.0=1.0
saml.profile.assertion.version.1.1=1.1
saml.profile.assertion.remove=Remove Assertion
saml.profile.assertion.help.remove=Selecting the check box to remove assertion.
saml.profile.assertion.help.iplanet-am-saml-assertion-timeout=In seconds. This attribute specifies the period of time an assertion that is created for an artifact will be valid. The default is 400.
saml.profile.assertion.help.iplanet-am-saml-notbefore-timeskew=This attribute is used to calculate the notBefore time of an assertion. For example, if IssueInstant is 2002-09024T21:39:49Z, and Assertion Skew Factor For notBefore Time is set to 300 seconds (180 is the default value), the notBefore attribute of the conditions element for the assertion would be 2002-09-24T21:34:49Z.
saml.profile.artifact.header=Artifact
saml.profile.assertion.help.iplanet-am-saml-artifact-timeout=In seconds.
saml.profile.assertion.help.iplanet-am-saml-artifact-name=This attribute assigns a variable name to a SAML artifact. The artifact is bounded-size data that identifies an assertion and a source site. It is carried as part of a URL query string and conveyed by redirection to the destination site.
saml.profile.assertion.help.signassertion=This attribute specifies whether all SAML assertions will be digitally signed (XML DSIG) before being delivered. Selecting the check box enables this feature.
saml.profile.assertion.help.signrequest=This attribute specifies whether all SAML requests will be digitally signed (XML DSIG) before being delivered. Selecting the check box enables this feature.
saml.profile.assertion.help.signresponse=This attribute specifies whether all SAML responses will be digitally signed (XML DSIG) before being delivered. Selecting the check box enables this feature.
saml.profile.name.id.attribute.map.header=NameID Format
saml.profile.name.id.attribute.map.label=NameID Format List
saml.profile.name.id.attribute.map.inlinehelp=Defines mapping between the Name ID format and user's profile attribute. Example urn:oasis:names:tc:SAML:1.1:nameid-format:emailAddress=mail. If the defined Name ID format is used in protocol, the profile attribute value will be used as NameID value for the format in the Subject.
saml.profile.attribute.map.header=Attribute Map
saml.profile.attribute.map.label=Attribute Map List
saml.profile.attribute.map.inlinehelp=This mapping is the configuration used by the Site Attribue Mapper of Trusted Partner. Mapping should be defined as [SAML Attribute Namespace|]SAML ATTRIBUTE NAME=PROFILE ATTRIBUTE NAME. Example: urn:oasis:names:tc:SAML:1.1:nameid-format:emailAddress|EmailAddress=mail
saml.profile.signing.header=Signing
saml.profile.version.header=Version
saml.profile.protocol.header=Protocol
saml.profile.protocol.version=Default Protocol Version
saml.profile.protocol.help.version=Default value is 1.1. Specifies default SAML version used. Possible values are 1.0 or 1.1.
saml.profile.protocol.version.1.0=1.0
saml.profile.protocol.version.1.1=1.1
saml.profile.attribute.query.header=Attribute Query
saml.profile.attribute.query.label=Attribute List For Attribute Query
saml.profile.attribute.query.help=
saml.profile.siteid.table.header=Site Identifiers
saml.profile.siteid.table.column.instance=Instance ID
saml.profile.siteid.table.column.action=Actions
saml.profile.siteid.table.noentries=There are no site identifiers.
saml.profile.trustedPartners.table.header=Trusted Partners
saml.profile.trustedPartners.table.column.url=Instance ID
saml.profile.TrustedPartners.table.column.action=Actions
saml.profile.trustedPartners.noentries=There are no trusted partners.
saml.profile.targetURLs.table.header=Target URLs
saml.profile.targetURLs.table.column.url=URL
saml.profile.targetURLs.table.column.action=Actions
saml.profile.targetURLs.table.noentries=There are no target URLs.
page.title.SAML.addSiteID=New Site Identifier
saml.profile.siteid.instanceid.label=Instance ID
saml.profile.siteid.instanceid.help=The value of this property is protocol://host:port.
saml.profile.siteid.siteid.label=Site ID
saml.profile.siteid.siteid.help=The site ID is an identifier generated for each site (although the value will be the same for multiple servers behind a load balancer).
saml.profile.siteid.issuername.label=Issuer Name
saml.profile.siteid.issuername.help=The default value of this property is host:port, but it could be any URI.
saml.profile.siteid.create.page.title=Add New Site Identifier
saml.profile.siteid.edit.page.title=Edit Site Identifier
saml.profile.siteid.missing.instanceid.message=Instance ID is required.
saml.profile.siteid.missing.siteid.message=Site ID is required.
saml.profile.siteid.missing.issuername.message=Issuer name is required.
saml.profile.siteid.already.exists.siteId=Site ID already existed.
saml.profile.trustedPartners.selectType.page.title=Select trusted partner type and profile
saml.profile.trustedPartners.selectType.profile.label=Select the type of profile and binding method you are trying to create
saml.profile.trustedPartners.selectType.profile.help=The first step in configuring a trusted partner is to determine the partner's role in the trust relationship. A trusted partner can be a source site (one that generates a single sign-on assertion) or a destination site (one that consumes a single sign-on assertion). For example, if the partner is the source site, this attribute is configured based on how it will send assertions. If the partner is the destination site, this attribute is configured based on the profile in which it will be receiving assertions. Following is the first part of the procedure for configuring a trusted partner. The starting point is the SAML screen under Federation.
saml.profile.trustedPartners.setType.profile.label=Select profile and binding method
saml.profile.trustedPartners.selectType.profile.common.label=Common Settings
saml.profile.trustedPartners.selectType.profile.destination.label=Destination
saml.profile.trustedPartners.selectType.profile.destination.help=The destination sites is the one that consumes a single sign-on assertion.
saml.profile.trustedPartners.selectType.profile.source.label=Source
saml.profile.trustedPartners.selectType.profile.source.help=The source site is the one that generates a single sign-on assertion.
saml.profile.trustedPartners.selectType.profile.artifact.label=Artifact
saml.profile.trustedPartners.selectType.profile.post.label=Post
saml.profile.trustedPartners.selectType.profile.soap.label=SOAP Query
saml.profile.trustedPartners.manage.profile.message=To change the trusted partner settings select the
saml.profile.trustedPartners.setType.button=Edit...
saml.profile.trustedPartners.selectType.profile.artifact.help=The <b>Web Browser Artifact Profile</b> is used when there is a back channel available to process an artifact. (An artifact is carried as part of the URL and points to an assertion which contains the security information regarding the requestor.)
saml.profile.trustedPartners.selectType.profile.post.help=The <b>Web Browser POST Profile</b> is a front-channel profile that sends responses via the browser. It allows security information to be supplied to a trusted partner site using the HTTP POST method (without the use of an artifact).
saml.profile.trustedPartners.selectType.profile.soap.help=SAML SOAP Receiver. Assertions are exchanged between OpenAM and inquiring parties using the <Request> and <Response> XML constructs defined in the SAML specification. These SAML constructs are then integrated into SOAP messages for transport.
saml.profile.trustedpartners.create.page.title=Add New Trusted Partner
saml.profile.trustedpartners.edit.page.title=Edit Trusted Partner
saml.profile.trustedPartners.partnerName.label=Name
saml.profile.trustedPartners.partnerName.help=The name of trusted partner which be displayed on trusted partner table. For example: sun, ibm or hp.
saml.profile.trustedPartners.sourceID.label=Source ID
saml.profile.trustedPartners.sourceID.help=This is a 20 byte sequence (encoded using the Base64 format) that comes from the partner site. It is generally the same value as that used for the Site ID attribute when configuring the Site Identifiers attribute.
saml.profile.trustedPartners.target.label=Target
saml.profile.trustedPartners.target.help=This is the domain of the partner site (with or without a port number).
saml.profile.trustedPartners.postURL.label=Post URL
saml.profile.trustedPartners.postURL.help=The URL that points to the servlet that implements the Web Browser POST Profile.
saml.profile.trustedPartners.siteAttributeMapper.label=Site Attribute Mapper
saml.profile.trustedPartners.siteAttributeMapper.help=The class is used to return a list of attribute values defined as AttributeStatements elements in an Authentication Assertion. A site attribute mapper needs to be implemented from the com.sun.identity.saml.plugins.PartnerSiteAttributeMapper interface. If no class is defined, no attributes will be included in the assertion.
saml.profile.trustedPartners.nameIdentifierMapper.label=Name Identifier Mapper
saml.profile.trustedPartners.nameIdentifierMapper.help=The class is an interface that is implemented to map user account to name identifier in assertion subject. The default is com.sun.identity.saml.plugins.DefaultNameIdentifierMapper.
saml.profile.trustedPartners.soapURL.label=SOAP URL
saml.profile.trustedPartners.soapURL.help=The URL to the SAML SOAP Receiver.
saml.profile.trustedPartners.accountMapper.label=Account Mapper
saml.profile.trustedPartners.accountMapper.help=The class is an interface that is implemented to map partner account to user account. The default is com.sun.identity.saml.plugins.DefaultPartnerAccountMapper.
saml.profile.trustedPartners.authenticationType.label=Authentication Type
saml.profile.trustedPartners.authenticationType.help=Authentication types that can be used with SAML. This attribute is optional. If not specified, the default is NOAUTH. If BASICAUTH or https is specified, the Trusted Partners attribute is required and should be HTTPS.
saml.profile.trustedPartners.authenticationType.option.none=None
saml.profile.trustedPartners.authenticationType.option.basic=Basic
saml.profile.trustedPartners.authenticationType.option.ssl=SSL/TLS
saml.profile.trustedPartners.authenticationType.option.sslWithBasic=SSL/TLS with Basic
saml.profile.trustedPartners.user.label=User
saml.profile.trustedPartners.user.help=When BASICAUTH is chosen as the Authentication Type, the value of this attribute defines the user identifier of the partner being used to protect the partner's SOAP receiver.
saml.profile.trustedPartners.password.label=User's Password
saml.profile.trustedPartners.password.help=When BASICAUTH is chosen as the Authentication Type, the value of this attribute defines the password for the user identifier of the partner being used to protect the partner's SOAP receiver.
saml.profile.trustedPartners.passwordConfirm.label=User's Password (re-enter)
saml.profile.trustedPartners.certificate.label=Signing Certificate Alias
saml.profile.trustedPartners.certificate.help=A certificate alias that is used to verify the signature in an assertion when it is signed by the partner and the certificate cannot be found in the KeyInfo portion of the signed assertion.
saml.profile.trustedPartners.issuer.label=Issuer
saml.profile.trustedPartners.issuer.help=The creator of a generated assertion. The default syntax is hostname:port.
saml.profile.trustedPartners.samlURL.label=SAML URL
saml.profile.trustedPartners.samlURL.help=The URL that points to the servlet that implements the Web Browser Artifact Profile.
saml.profile.trustedPartners.hostList.label=Host List
saml.profile.trustedPartners.hostList.help=A list of the IP addresses, the DNS host name, or the alias of the client authentication certificate used by the partner. This is configured for all hosts within the partner site that can send requests to this authority. This list helps to ensure that the requestor is indeed the intended receiver of the artifact. If the requester is defined in this list, the interaction will continue. If the requester's information does not match any hosts defined in the host list, the request will be rejected.
saml.profile.trustedPartners.attributeMapper.label=Attribute Mapper
saml.profile.trustedPartners.attributeMapper.help=The class that is used to obtain single sign-on information from a query. You need to implement an attribute mapper from the included interface. If no class is specified, the DefaultAttributeMapper will be used.
saml.profile.trustedPartners.actionMapper.label=Action Mapper
saml.profile.trustedPartners.actionMapper.help=The class that is used to get single sign-on information and map partner actions to authorization decisions. You need to implement an action mapper from the included interface. If no class is specified, the DefaultActionMapper will be used.
saml.profile.trustedPartners.user.password.mismatchedmessage=Password mismatched. Re-enter password fields.
saml.profile.trustedPartners.version.label=Version
saml.profile.trustedPartners.version.help=The SAML version used (1.0 or 1.1) to send SAML requests.
saml.profile.trustedPartners.version.option.1.0=1.0
saml.profile.trustedPartners.version.option.1.1=1.1
saml.profile.trustedPartner.missing.partnerName.message=Name is required.
saml.profile.trustedPartner.missing.sourceid.message=Source ID is required.
saml.profile.trustedPartner.missing.target.message=Target is required.
saml.profile.trustedPartner.missing.postURL.message=POST URL is required.
saml.profile.trustedPartner.missing.soapURL.message=SOAP URL is required.
saml.profile.trustedPartner.missing.issuer.message=Issuer is required.
saml.profile.trustedPartner.missing.hostList.message=Host list is required.
saml.profile.trustedPartner.missing.samlURL.message=SAML URL is required.
saml.profile.trustedPartner.already.exists=Trusted Partner already exists.
saml.profile.trustedPartner.missing.profile=One or more profiles is required.
saml.profile.trustedPartners.noattribute.message=All settings under this section are common.
saml.profile.targetURLs.create.page.title=Add New Post To Target URL
saml.profile.targetURLs.edit.page.title=Edit Post To Target URL
saml.profile.targetURLs.target.label=Server Name
saml.profile.targetURLs.target.help=The name of the server on which the TARGET URL resides, such as www.example.com
saml.profile.targetURLs.protocol.label=Protocol
saml.profile.targetURLs.protocol.help=Choose either http or https
saml.profile.targetURLs.port.label=Port
saml.profile.targetURLs.port.help=This attribute contains the port number such as 58080.
saml.profile.targetURLs.path.label=Path
saml.profile.targetURLs.path.help=This attribute contains the URI such as /amserver/console.
saml.profile.targetURLs.protocol.option.http=http
saml.profile.targetURLs.protocol.option.https=https
saml.profile.targetURLs.incorrect.url=URL is incorrect.
saml.profile.targetURLs.already.exists=Target URL already exists.
breadcrumbs.saml.selectPartnerType=Select Partner Type
breadcrumbs.saml=Local Site Properties
breadcrumbs.saml.addSiteId=Add Site Identifier
breadcrumbs.saml.editSiteId=Edit Site Identifier
breadcrumbs.saml.addTargetURLs=Add Target URLs
breadcrumbs.saml.editTargetURLs=Edit Target URLs
breadcrumbs.saml.addTrustedPartner=Add Trusted Partner
breadcrumbs.saml.editTrustedPartner=Edit Trusted Partner
saml.message.trusted.partner.deleted=Trusted Partner deleted.
saml.message.trusted.partner.deleted.pural=Trusted Partners deleted.
saml.message.trusted.partner.updated=Trusted partner was updated.
saml.label=SAML1.x
button.previous=Previous
################################################################################
#
# New Entity Provider
#
################################################################################
entity.protocol.label=Protocol
entity.type.label=Type
entity.location.label=Location
idff.label=IDFF
wsfed.label=WSFederation
samlv2.label=SAMLv2
serviceProvider=Service Provider (SP)
identityProvider=Identity Provider (IDP)
affiliate=Affiliate
xacmlPEP=XACML (PEP)
xacmlPDP=XACML (PDP)
location.hosted=Hosted
location.remote=Remote
create.entity.title=Create Entity Provider
################################################################################
#
# IDFF General
#
################################################################################
idff.entityDescriptor.provider.general.updated = IDFF General properties are updated
idff.entityDescriptor.type.provider.label=Provider
idff.entityDescriptor.type.affiliate.label=Affiliate
idff.entityDescriptor.general.title=IDFF General Properties Page
idff.entityDescriptor.section.title.commonAttributes=Entity Common Attributes
idff.entityDescriptor.attribute.label.name=Entity Name:
idff.entityDescriptor.attribute.label.type=Type:
idff.entityDescriptor.attribute.label.description=Description:
################################################################################
#
# IDFF IDP
#
################################################################################
idff.entityDescriptor.provider.idp.updated = IDFF Identity Provider properties are updated
idff.entityDescriptor.provider.section.title.commonAttributes=Common Attributes
idff.entityDescriptor.provider.attribute.label.providerType=Provider Type
idff.entityDescriptor.provider.attribute.label.description=Description
idff.entityDescriptor.provider.attribute.label.protocolSupportEnum=Protocol Support Enumeration
idff.entityDescriptor.provider.attribute.label.serverNameIdentifierMapping=Server Name Identifier Mapping Binding
idff.entityDescriptor.provider.attribute.help.serverNameIdentifierMapping=URI describing the SAML authority binding at the identity provider to which identifier mapping queries can be sent.
idff.entityDescriptor.provider.attribute.label.Signing=Signing Key
idff.entityDescriptor.provider.attribute.label.Signing.KeyAlias=Key Alias
idff.entityDescriptor.provider.attribute.label.Encryption=Encryption Key
idff.entityDescriptor.provider.attribute.label.Encryption.KeyAlias=Key Alias
idff.entityDescriptor.provider.attribute.label.Encryption.KeySize=Key Size
idff.entityDescriptor.provider.attribute.help.Encryption.KeySize=Constraints the length of keys used by the consumer when interacting with another entity.
idff.entityDescriptor.provider.attribute.label.Encryption.Method=Encryption Method
idff.entityDescriptor.provider.attribute.help.Encryption.Method=Encryption preferences URI
idff.entityDescriptor.provider.attribute.label.enableNameIdentifierEncryption=Name Identifier Encryption
idff.entityDescriptor.provider.attribute.label.certificateAliases=Certificate Aliases
idff.entityDescriptor.provider.attribute.label.keysize=Key Size
idff.entityDescriptor.provider.attribute.label.algorithm=Algorithm
idff.entityDescriptor.provider.attribute.label.signingCertAlias=Sign Certificate Alias
idff.entityDescriptor.provider.attribute.label.encryptionCertAlias=Encryption Cert Alias
idff.entityDescriptor.provider.section.title.communicationURLs=Communication URLs
idff.entityDescriptor.provider.attribute.label.SOAPEndpointURL=SOAP Endpoint
idff.entityDescriptor.provider.attribute.help.SOAPEndpointURL=Provider's SOAP Endpoint URL
idff.entityDescriptor.provider.attribute.label.singleSignOnServiceURL=Single Sign-On Service URL
idff.entityDescriptor.provider.attribute.label.singleLogoutServiceURL=Single Logout Service
idff.entityDescriptor.provider.attribute.help.singleLogoutServiceURL=URL used for user-agent-based Single Logout Protocol profiles.
idff.entityDescriptor.provider.attribute.label.singleLogoutReturnURL=Single Logout Return
idff.entityDescriptor.provider.attribute.help.singleLogoutReturnURL=URL to which the provider redirects at the end of the user-agent based Single Logout Protocol profiles.
idff.entityDescriptor.provider.attribute.label.federationTerminationServiceURL=Federation Termination Service
idff.entityDescriptor.provider.attribute.help.federationTerminationServiceURL=URL used for user-agent-based Federation Termination Notification Protocol profiles.
idff.entityDescriptor.provider.attribute.label.federationTerminationReturnURL=Federation Termination Return
idff.entityDescriptor.provider.attribute.help.federationTerminationReturnURL=URL to which the provider redirects at the end of user-agent-based Federation Termination Notification Protocol profiles.
idff.entityDescriptor.provider.attribute.label.nameRegistrationServiceURL=Name Registration Service
idff.entityDescriptor.provider.attribute.help.nameRegistrationServiceURL=URL used for user-agent-based Register Name Identifier Protocol Profiles.
idff.entityDescriptor.provider.attribute.label.nameRegistrationReturnURL=Name Registration Return
idff.entityDescriptor.provider.attribute.help.nameRegistrationReturnURL=Provider's redirecting URL for use after HTTP name registration has taken places.
idff.entityDescriptor.provider.section.title.communicationProfile=Communication Profiles
idff.entityDescriptor.provider.attribute.label.federationTerminationProfile=Federation Termination
idff.entityDescriptor.provider.attribute.help.federationTerminationProfile=This field specifies if the SOAP or HTTP/Redicect profile is to be used to notify of federation termination.
idff.entityDescriptor.provider.attribute.label.singleLogoutProfile=Single Logout
idff.entityDescriptor.provider.attribute.help.singleLogoutProfile=This field specifies if SOAP or HTTP Redirect is to be used to notify a logout event.
idff.entityDescriptor.provider.attribute.label.nameRegistrationProfile=Name Registration
idff.entityDescriptor.provider.attribute.help.nameRegistrationProfile=This field specifies if the SOAP or HTTP/Redirects profile is to be used for name registration.
idff.entityDescriptor.provider.attribute.label.federationProfile=Single Signon/Federation
idff.entityDescriptor.provider.attribute.help.federationProfile=This field specifies the profile used by the hosted provider for sending authentication requests.
idff.entityDescriptor.provider.attribute.option.profile.httpRedirect=HTTP Redirect
idff.entityDescriptor.provider.attribute.option.profile.httpGet=HTTP Get
idff.entityDescriptor.provider.attribute.option.profile.SOAP=SOAP
idff.entityDescriptor.provider.attribute.option.profile.BrowserPost=Browser Post
idff.entityDescriptor.provider.attribute.option.profile.BrowserArt=Browser Art
idff.entityDescriptor.provider.attribute.option.profile.WMLPost=WML Post
idff.entityDescriptor.provider.attribute.option.profile.LECP=LECP
idff.entityDescriptor.provider.attribute.option.defaultAuthenticationContext.password=Password
idff.entityDescriptor.provider.attribute.option.defaultAuthenticationContext.MobileDigitalID=Mobile Digital ID
idff.entityDescriptor.provider.attribute.option.defaultAuthenticationContext.Smartcard=Smart Card
idff.entityDescriptor.provider.attribute.option.defaultAuthenticationContext.Smartcard-PKI=Smart Card PKI
idff.entityDescriptor.provider.attribute.option.defaultAuthenticationContext.MobileUnregistered=Mobile Unregistered
idff.entityDescriptor.provider.attribute.option.defaultAuthenticationContext.Software-PKI=Software PKI
idff.entityDescriptor.provider.attribute.option.defaultAuthenticationContext.Previous-Session=Previous Session
idff.entityDescriptor.provider.attribute.option.defaultAuthenticationContext.MobileContract=Mobile Contract
idff.entityDescriptor.provider.attribute.option.defaultAuthenticationContext.Time-Sync-Token=Time Sync Token
idff.entityDescriptor.provider.attribute.option.defaultAuthenticationContext.PasswordProtectedTransport=Password Protected Transport
idff.entityDescriptor.provider.section.title.idpConfiguration=Identity Provider Configuration
idff.entityDescriptor.provider.section.title.spConfiguration=Service Provider Configuration
idff.entityDescriptor.provider.section.title.bootStrapping=Bootstrapping
idff.entityDescriptor.provider.section.title.serviceURL=Service URL
idff.entityDescriptor.provider.section.title.autoFederation=Auto Federation
idff.entityDescriptor.provider.section.title.plugin=Plugins
idff.entityDescriptor.provider.section.title.idpAttributeMapper=Identity Provider Attribute Mapper
idff.entityDescriptor.provider.section.title.spAttributeMapper=Service Provider Attribute Mapper
# Entended metadata
idff.entityDescriptor.provider.section.title.accessManagerConfigurations=OpenAM Configuration
idff.entityDescriptor.provider.attribute.label.alias=Provider Alias
idff.entityDescriptor.provider.attribute.label.authenticationType=Authentication Type
idff.entityDescriptor.provider.attribute.option.authenticationType.local=Local
idff.entityDescriptor.provider.attribute.option.authenticationType.remote=Remote
idff.entityDescriptor.provider.attribute.label.defaultAuthenticationContext=Default Authentication Context
idff.entityDescriptor.provider.attribute.label.organizationDN=Realm
idff.entityDescriptor.provider.attribute.label.libertyVersionURI=Liberty Version URI
idff.entityDescriptor.provider.attribute.label.nameIdentifierImplementation=Name Identifier Implementation
idff.entityDescriptor.provider.attribute.label.providerHomePageURL=Home Page URL
idff.entityDescriptor.provider.attribute.label.singleSignOnFailureRedirectURL=Single Sign-On Failure Redirect URL
idff.entityDescriptor.provider.attribute.label.assertionIssuer=Assertion Issuer
idff.entityDescriptor.provider.attribute.help.assertionIssuer=This host issues assertion. This can be load balancer's host name if OpenAM is behind a load balancer.
idff.entityDescriptor.provider.attribute.label.generateDiscoveryBootstrappingResOffering=Generate Discovery Bootstrapping Resource Offering
idff.entityDescriptor.provider.attribute.help.generateDiscoveryBootstrappingResOffering=When selected, Bootstrapping Discovery Service Resource Offering will be generated during single sign on process.
idff.entityDescriptor.provider.attribute.label.enableAutoFederation=Auto Federation
idff.entityDescriptor.provider.attribute.help.enableAutoFederation=Enable Auto Federation if not already federated.
idff.entityDescriptor.provider.attribute.label.autoFederationCommonAttributeName=Auto Federation Common Attribute Name
idff.entityDescriptor.provider.attribute.help.autoFederationCommonAttributeName=User's common LDAP attribute name such as telephonenumber. For creating an Auto Federation Attribute Statement. The statement will have "AutoFedAttribute" as the attribute name and value of this common attribute.
idff.entityDescriptor.provider.attribute.label.attributeStatementPlugin=Attribute Statement Plug-in
idff.entityDescriptor.provider.attribute.help.attributeStatementPlugin=This plug-in is used for adding attribute statements in the assertion which is generated during Liberty single sign-on process.
idff.entityDescriptor.provider.attribute.label.sunIdentityServerProviderIDPAttributeMap=Identity Provider Attribute Mapping
idff.entityDescriptor.provider.attribute.help.sunIdentityServerProviderIDPAttributeMap=This mapping will be used by the default IDP Attribute Plug-in. Mapping should be defined as SAML attribute to local attribute. Example: EmailAddress=mail Address=postaladdress.
idff.entityDescriptor.provider.section.title.SAMLAttributes=SAML Attributes
idff.entityDescriptor.provider.attribute.label.assertionInterval=Assertion Interval
idff.entityDescriptor.provider.attribute.label.cleanupInterval=Cleanup Interval
idff.entityDescriptor.provider.attribute.label.artifactTimeout=Artifact Timeout
idff.entityDescriptor.provider.attribute.label.assertionLimit=Assertion Limit
idff.entityDescriptor.provider.section.title.authenticationContext=Authentication Context
idff.entityDescriptor.provider.table.title.authenticationContexts=Authentication Context
idff.sp.authenticationContext.table.name.contextReference.name=Context Reference
idff.sp.authenticationContext.table.name.level.name=Level
idff.sp.authenticationContext.table.name.supported.name=Supported
idff.idp.authenticationContext.table.name.supported.name=Supported
idff.idp.authenticationContext.table.name.contextReference.name=Context Reference
idff.idp.authenticationContext.table.name.value.name=Value
idff.idp.authenticationContext.table.name.key.name=Key
idff.idp.authenticationContext.table.name.level.name=Level
idff.authenticationContext.MobileContract.label=MobileContract
idff.authenticationContext.MobileDigitalID.label=MobileDigitalID
idff.authenticationContext.MobileUnregistered.label=MobileUnregistered
idff.authenticationContext.Password.label=Password
idff.authenticationContext.PasswordProtectedTransport.label=Password-ProtectedTransport
idff.authenticationContext.Previous-Session.label=Previous-Session
idff.authenticationContext.Smartcard.label=Smartcard
idff.authenticationContext.Smartcard-PKI.label=Smartcard-PKI
idff.authenticationContext.Software-PKI.label=Software-PKI
idff.authenticationContext.Time-Sync-Token.label=Time-Sync-Token
idff.authenticationContext.key.option.none=None
idff.authenticationContext.key.option.service=Service
idff.authenticationContext.key.option.module=Module
idff.authenticationContext.key.option.user=User
idff.authenticationContext.key.option.role=Role
idff.authenticationContext.key.option.level=Authentication Level
idff.authenticationContext.priority.option.1=1
idff.authenticationContext.priority.option.2=2
idff.authenticationContext.priority.option.3=3
idff.authenticationContext.priority.option.4=4
idff.authenticationContext.priority.option.5=5
idff.authenticationContext.priority.option.6=6
idff.authenticationContext.priority.option.7=7
idff.authenticationContext.priority.option.8=8
idff.authenticationContext.priority.option.9=9
idff.authenticationContext.priority.option.10=10
################################################################################
#
# IDFF SP
#
################################################################################
idff.entityDescriptor.provider.sp.updated = IDFF Service Provider properties are updated
idff.entityDescriptor.provider.section.title.serviceProfile=Service Provider
idff.entityDescriptor.provider.attribute.label.assertionConsumerURL=Assertion Consumer URL
idff.entityDescriptor.provider.attribute.help.assertionConsumerURL=This field defines the provider end-point to which a provider will send SAML assertions.
idff.entityDescriptor.provider.attribute.label.assertionConsumerServiceURLID=Assertion Consumer Service URL ID
idff.entityDescriptor.provider.attribute.help.assertionConsumerServiceURLID=This ID is required if Protocol Support Enum is urn:liberty:iff:2003-08.
idff.entityDescriptor.provider.attribute.label.setAssertionConsumerServiceURLasDefault=Set Assertion Consumer Service URL as Default
idff.entityDescriptor.provider.attribute.help.setAssertionConsumerServiceURLasDefault=Use the Assertion Consumer Service URL as the default value when no identifier is provided in the request.
idff.entityDescriptor.provider.attribute.label.signAuthenticationRequest=Sign Authentication Request
idff.entityDescriptor.provider.attribute.help.signAuthenticationRequest=Service Provider will always sign Authentication Request.
idff.entityDescriptor.provider.attribute.label.nameIDPolicy=Name ID Policy
idff.entityDescriptor.provider.attribute.help.nameIDPolicy=An enumeration permitting requester influence over name identifier policy at the identity provider.
idff.entityDescriptor.provider.attribute.nameIDPolicy.option.none=None
idff.entityDescriptor.provider.attribute.nameIDPolicy.option.onetime=One Time
idff.entityDescriptor.provider.attribute.nameIDPolicy.option.federation=Federation
idff.entityDescriptor.provider.attribute.label.enableAffiliationFederation=Affiliation Federation
idff.entityDescriptor.provider.attribute.label.doFederatePageURL=Federate Page URL
idff.entityDescriptor.provider.attribute.label.spAuthnContextMapping=SP Authn Context Mapping
idff.entityDescriptor.provider.attribute.label.responsdWith=Respond With
idff.entityDescriptor.provider.attribute.label.federationSPAdapterEnv=Federation SP Adapter Env
idff.entityDescriptor.provider.attribute.label.ListOfCOTsPageURL=List of COTs Page URL
idff.entityDescriptor.provider.attribute.label.userProviderClass=User Provider Class
idff.entityDescriptor.provider.attribute.label.federationDoneURL=Federation Done URL
idff.entityDescriptor.provider.attribute.label.terminationDoneURL=Termination Done URL
idff.entityDescriptor.provider.attribute.label.errorPageURL=Error Page URL
idff.entityDescriptor.provider.attribute.label.providerStatus=Provider Status
idff.entityDescriptor.provider.attribute.label.logoutDoneURL=Logout Done URL
idff.entityDescriptor.provider.attribute.label.supportedSSOProfile=Supported SSO Profile
idff.entityDescriptor.provider.attribute.label.attributeMapperClass=Attribute Mapper Class
idff.entityDescriptor.provider.attribute.label.registrationDoneURL=Registration Done URL
idff.entityDescriptor.provider.attribute.label.idpAuthnContextMapping=IDP Auth Context Mapping
idff.entityDescriptor.provider.attribute.label.sunIdentityServerProviderSPAdapter=Service Provider Adapter
idff.entityDescriptor.provider.attribute.help.sunIdentityServerProviderSPAdapter=Implementation class for the FederationSPAdapter which is used to add application specific processing logic during federation process.
idff.entityDescriptor.provider.attribute.label.forcedAuthenticationAtIdentityProvider=Identity Provider Forced Authentication
idff.entityDescriptor.provider.attribute.label.requestIdentityProviderToBePassive=Request Identity Provider to be Passive
idff.entityDescriptor.provider.attribute.label.sunIdentityServerProviderAttributeMapperClass=Attribute Mapper Class
idff.entityDescriptor.provider.attribute.help.sunIdentityServerProviderAttributeMapperClass=Attribute Mapper at the service provider to map the SAML Attributes from the assertion to local user attributes.
idff.entityDescriptor.provider.attribute.label.sunIdentityServerProviderSPAttributeMap=Service Provider Attribute Mapping
idff.entityDescriptor.provider.attribute.help.sunIdentityServerProviderSPAttributeMap=This mapping will be used by the default attribute mapper. Values should be defined as SAML attribute to local attribute. Example: EmailAddress=mail Address=postaladdress.
idff.entityDescriptor.provider.section.title.proxyAuthenticationConfiguration=Proxy Authentication Configuration
idff.entityDescriptor.provider.attribute.label.enableProxyAuthentication=Proxy Authentication
idff.entityDescriptor.provider.attribute.label.proxyIdentityProviders=Proxy Identity Providers List
idff.entityDescriptor.provider.attribute.help.proxyIdentityProviders=This list is required if Proxy Authentication Configuration is enabled.
idff.entityDescriptor.provider.attribute.label.maximumNumberOfProxies=Maximum Number of Proxies
idff.entityDescriptor.provider.attribute.help.maximumNumberOfProxies=Maximum number of Identity Providers to be proxied.
idff.entityDescriptor.provider.attribute.label.useIntroductionCookieForProxying=Use Introduction Cookie for Proxying
################################################################################
#
# IDFF Afffiliate
#
################################################################################
idff.page.title.entityDescriptors.profile={0} - General
idff.page.title.entityDescriptors.Affiliate={0} - Affiliate
idff.entityDescriptor.affiliate.section.title.commonAttributes=Common Attributes
idff.entityDescriptor.affiliate.attribute.label.affiliateID=Name
idff.entityDescriptor.affiliate.attribute.label.affiliateOwnerID=Owner
idff.entityDescriptor.affiliate.section.title.membersAttributes=Members
idff.entityDescriptor.affiliate.attribute.label.affiliateMembers=Members
idff.invalid.affiliateId.affiliateOwnerId=Invalid values for Affiliate and/or Affiliate Owner.
idff.entityDescriptor.Affiliate.updated=IDFF Affiliation properties are updated.
################################################################################
#
# Circle of Trust Properties
#
################################################################################
authDomain.attribute.label.description=Description
authDomain.attribute.label.idffWriterServiceURL=IDFF Writer Service URL
authDomain.attribute.help.idffWriterServiceURL=Location of the IDFF Writer service that writes the cookie to the Common Domain.
authDomain.attribute.label.idffReaderServiceURL=IDFF Reader Service URL
authDomain.attribute.help.idffReaderServiceURL=Location of the IDFF Reader service that reads the cookie from the Common Domain.
authDomain.attribute.label.saml2WriterServiceURL=SAML2 Writer Service URL
authDomain.attribute.help.saml2WriterServiceURL=Location of the SAML2 Writer service that writes the cookie to the Common Domain.
authDomain.attribute.label.saml2ReaderServiceURL=SAML2 Reader Service URL
authDomain.attribute.help.saml2ReaderServiceURL=Location of the SAML2 Reader service that reads the cookie from the Common Domain.
authDomain.attribute.label.status=Status
authDomain.attribute.label.realm=Realm
authDomain.attribute.help.realm=The name of the realm where this cot will be created.
authDomain.attribute.label.addRemoveProviders=Entity Providers
authDomain.attribute.help.addRemoveProviders=Minimum requirements for a circle of trust are one identity provider and one service provider. Providers will be assigned to the realm that is specified above.
authDomain.create.title=Create Circle of Trust
authDomain.edit.title=Edit Circle of Trust
authdomain.authentication.domain.name.missing.message=Circle of Trust Name is required.
authDomain.message.deleted.pural=Circles of Trust deleted.
authDomain.message.deleted={0} was/were removed.
authentication.domain.updated=Circle of Trust profile was updated.
authentication.domain.create.message={0} was created
breadcrumbs.federation.authdomains=Federation
saml2.label=SAMLv2
################################################################################
#
# SAMLv2 Properties
#
################################################################################
samlv2.attribute.label.name=Name
samlv2.attribute.label.EncryptDetails=Encryption
#IDP
samlv2idp.attribute.label.IDPMetaAlias=MetaAlias
samlv2idp.attribute.label.IDPMetaAlias.help=The MetaAlias attribute is specific to providers using OpenAM therefore, a null value for a remote provider configuration is possible.
samlv2idp.provider.section.title.idpcommonServices=IDP Service Attributes
samlv2idp.provider.section.title.nameidformat=NameID Format
samlv2idp.provider.section.title.signnencrypt=Signing and Encryption
samlv2idp.provider.section.title.remsignnencrypt=Signing and Encryption
samlv2idp.provider.section.title.plugins=Plugins
samlv2idp.provider.section.title.federation=Auto Federation
samlv2idp.provider.section.title.basicauth=Basic Authentication
samlv2idp.provider.section.title.authcont=Authentication Context
samlv2idp.provider.section.title.bootstrap=Bootstrapping
samlv2idp.provider.section.title.assertion=Assertion Time
samlv2idp.provider.section.title.spcommonServices=SP Service Attributes
samlv2idp.attribute.label.protocolsupportenumeration=Protocol Support Enumeration
samlv2idp.attribute.label.artifactresolution=Artifact Resolution Service
samlv2idp.attribute.label.artifactlocation=Location
samlv2idp.attribute.label.artifactindex=Index
samlv2idp.attribute.label.isdefault=Default
samlv2idp.attribute.label.singlelogout=Single Logout Service
samlv2idp.attribute.label.httpredirectsinglelogout=HTTP-REDIRECT
samlv2idp.attribute.label.httpredirectlocation=Location
samlv2idp.attribute.label.httpredirectresplocation=Response Location
samlv2idp.attribute.label.soapsinglelogout=SOAP
samlv2idp.attribute.label.postsinglelogout=POST
samlv2idp.attribute.label.soapbinding=Binding
samlv2idp.attribute.label.soaplocation=Location
samlv2idp.attribute.label.managenameid=Manage NameID Service
samlv2idp.attribute.label.httpredirectmanagenameidservice=HTTP-REDIRECT
samlv2idp.attribute.label.httpredirectmanagenameidservicelocation=Location
samlv2idp.attribute.label.httpredirectmanagenameidserviceresplocation=Response Location
samlv2idp.attribute.label.soapmanagenameidservice=SOAP
samlv2idp.attribute.label.postmanagenameidservice=POST
samlv2idp.attribute.label.soapmanagenameidservicelocation=Location
samlv2idp.attribute.label.singlesignon=Single SignOn Service
samlv2idp.attribute.label.httpredirectsinglesignon=HTTP-REDIRECT
samlv2idp.attribute.label.httpredirectssolocation=Location
samlv2idp.attribute.label.httppostsinglesignon=POST
samlv2idp.attribute.label.httpsoapsinglesignon=SOAP
samlv2idp.attribute.label.httppostssolocation=Location
samlv2.attribute.label.keysize=Key Size
samlv2.attribute.label.algorithm=Algorithm
samlv2idp.attribute.label.signcertialias=Certificate Aliases
samlv2idp.attribute.label.signcertAlias=Signing
samlv2idp.attribute.label.signcertKeyPass=Key Pass
samlv2idp.attribute.label.encryptionCertAlias=Encryption
samlv2idp.attribute.label.nameidlist=NameID Format List
samlv2idp.attribute.label.nameIDFormatMap=NameID Value Map
samlv2idp.attribute.label.idpbasicauthon=Enabled
samlv2idp.attribute.label.idpbasicauthuser=User Name
samlv2idp.attribute.label.idpbasicauthpassword=Password
samlv2idp.attribute.label.idpautofedEnabled=Enabled
samlv2idp.attribute.label.idpautofedAttribute=Attribute
samlv2idp.attribute.label.idpAccountMapper=Account Mapper
samlv2idp.attribute.label.idpDisableNameIDPersistence=Disable NameID Persistence
samlv2idp.attribute.label.idpAttributeMapper=Attribute Mapper
samlv2idp.attribute.label.idpattributeMap=Attribute Map
samlv2idp.attribute.label.sign=Request/Response Signing
help.signing=Select the checkbox for each request/response that should be signed
samlv2idp.attribute.label.idpwantauthnrequestssigned=Authentication Request
samlv2idp.attribute.label.idpwantartifactresolvesigned=Artifact Resolve
samlv2idp.attribute.label.idpwantlogoutrequestsigned=Logout Request
samlv2idp.attribute.label.idpwantlogoutresponsesigned=Logout Response
samlv2idp.attribute.label.idpwantmnirequestsigned=Manage Name ID Request
samlv2idp.attribute.label.idpwantmniresponsesigned=Manage Name ID Response
samlv2idp.attribute.label.idpwantnameidencrypted=NameID Encryption
samlv2idp.attribute.label.idpdiscoveryBootstrappingEnabled=Discovery Bootstrapping
samlv2idp.attribute.label.idpassertionEffectiveTime=Effective Time
samlv2idp.attribute.label.idpassertionnotbeforetimeskew=Not-Before Time Skew
samlv2.idp.property.updated=SAMLv2 Identity Provider properties are updated
samlv2idp.attribute.label.localConfiguration=Local Configuration
samlv2idp.attribute.label.authUrl=Auth URL
samlv2idp.attribute.label.RpUrl=Reverse Proxy URL
samlv2idp.attribute.label.nameIDMappingService=NameID Mapping
samlv2idp.provider.section.title.assertioncache= Assertion Cache
samlv2idp.attribute.label.appLogoutUrl=External Application Logout URL
samlv2idp.attribute.help.idpappLogoutUrl=This is the logout URL for an external application. Once the server receives logout request from the remote partner, a request will be sent to the logout URL using back channel HTTP POST with all cookies. Optionally, a user session property could be sent as HTTP header and POST parameter if a query parameter "appsessionproperty" (set to the session property name) is included in the URL. e.g. "http://www.app.domain.com/uri/logout?appsessionproperty=mail".
#ECP
samlv2idp.attribute.label.ecp=ECP Configuration
samlv2idp.attribute.label.ecp.idpECPSessionMapper=IDP Session Mapper
#SAE
samlv2idp.attribute.label.sae=SAE Configuration
samlv2idp.attribute.label.sae.saeIDPUrl=IDP URL
#Relay State URL List IDP
samlv2idp.attribute.label.relayState=Relay State URL List
samlv2idp.attribute.label.relayState.relayStateUrlList= Relay State URL List
#IDPAdapter
samlv2idp.attribute.label.idpadapter=IDP Adapter
samlv2idp.attribute.label.idpadapter.IDPAdapterClass=IDP Adapter Class
samlv2idp.attribute.help.IdpIDPAdapter=The name of the IDP Adapter class; this class is invoked immediately before the SAML2 response is sent.
#SP
samlv2idp.attribute.label.SPMetaAlias=MetaAlias
samlv2idp.attribute.label.SPMetaAlias.help=The MetaAlias attribute is specific to providers using OpenAM therefore, a null value for a remote provider configuration is possible.
samlv2sp.provider.section.title.spurl=URL
samlv2sp.provider.section.title.others=Others
samlv2sp.provider.section.title.idpproxy=IDP Proxy
samlv2sp.attribute.label.idpProxyList=IDP Proxy List
samlv2sp.attribute.label.spauthnrequestssigned=Authentication Requests Signed
samlv2sp.attribute.label.spwantassertionssigned=Assertions Signed
samlv2sp.attribute.label.protocolsupportenumeration=Protocol Support Enumeration
samlv2sp.attribute.label.httpredirectsinglelogout=HTTP-REDIRECT
samlv2sp.attribute.label.postsinglelogout=POST
samlv2sp.attribute.label.httpredirectlocation=Location
samlv2sp.attribute.label.httpredirectresplocation=Response Location
samlv2sp.attribute.label.soapsinglelogout=SOAP
samlv2sp.attribute.label.soaplocation=Location
samlv2sp.attribute.label.httpredirectmanagenameidservice=HTTP-REDIRECT
samlv2sp.attribute.label.postmanagenameidservice=POST
samlv2sp.attribute.label.httpredirectmanagenameidservicelocation=Location
samlv2sp.attribute.label.httpredirectmanagenameidserviceresplocation=Response Location
samlv2sp.attribute.label.soapmanagenameidservice=SOAP
samlv2sp.attribute.label.soapmanagenameidservicelocation=Location
samlv2sp.attribute.label.soapmanagenameidserviceresplocation=Response Location
samlv2sp.attribute.help.addRemoveNameIdFormat=These are the available list of NameIdFormats
samlv2idp.attribute.label.artifactassertconsumerservice=Assertion Consumer Service
samlv2sp.attribute.label.httpartifactassertconsumerservice=HTTP-ARTIFACT
samlv2sp.attribute.label.httpartifactassertconsumerservicedefault=Default
label.artifact=Artifact
label.post=Post
samlv2sp.attribute.label.httpartifactassertconsumerserviceindex=Index
samlv2sp.attribute.label.httpartifactassertconsumerservicelocation=Location
samlv2sp.attribute.label.httppostassertconsumerservice=HTTP-POST
samlv2sp.attribute.label.httppostassertconsumerserviceindex=Index
samlv2sp.attribute.label.httppostassertconsumerservicelocation=Location
samlv2sp.attribute.label.introidpproxy=Introduction
samlv2sp.attribute.label.useproxyidpfinder=Use IDP Finder
samlv2sp.attribute.label.idpproxy=IDP Proxy
samlv2sp.attribute.label.alwaysIdpProxy=Proxy all requests
samlv2sp.attribute.label.idpProxyCount=Proxy Count
samlv2sp.attribute.label.signcertAlias=Signing
samlv2sp.attribute.label.encryptionCertAlias=Encryption
samlv2sp.attribute.label.spbasicauthon=Enabled
samlv2sp.attribute.label.spbasicauthuser=User Name
samlv2sp.attribute.label.spbasicauthpassword=Password
samlv2sp.attribute.label.spautofedEnabled=Enabled
samlv2sp.attribute.label.spautofedAttribute=Attribute
samlv2sp.attribute.label.sptransientUser=Transient User
samlv2sp.attribute.label.spAccountMapper=Account Mapper
samlv2sp.attribute.label.spuseNameidasspUserID=Use Name ID as User ID
samlv2sp.attribute.label.spAttributeMapper=Attribute Mapper
samlv2sp.attribute.label.spattributeMap=Attribute Map
samlv2sp.attribute.label.spAdapter=Adapter
samlv2sp.attribute.label.spAdapterEnv=Adapter Environment
samlv2sp.attribute.label.spDoNotWriteFederationInfoSection=NameID Format urn:oasis:names:tc:SAML:1.1:nameid-format:unspecified and Federation info persistance
samlv2sp.attribute.label.spDoNotWriteFederationInfo=Disable NameID persistence
samlv2sp.attribute.label.spsaml2authmodulename=Authentication Module Name
samlv2sp.attribute.label.splocalauthurl=Local Authentication Url
samlv2sp.attribute.label.spintermediateurl=Intermediate Url
samlv2sp.attribute.label.spdefaultrelaystate=Default Relay State URL
samlv2sp.attribute.label.spassertiontimeskew=Assertion Time Skew
samlv2idp.attribute.label.encrypted=Encryption
samlv2sp.attribute.label.spwantattributeencrypted=Attribute
samlv2sp.attribute.label.spwantassertionencrypted=Assertion
samlv2sp.attribute.label.spwantnameidencrypted=NameID
samlv2sp.attribute.label.spwantartifactresponsesigned=Artifact Response Signed
samlv2sp.attribute.label.spwantlogoutrequestsigned=Logout Request Signed
samlv2sp.attribute.label.spwantlogoutresponsesigned=Logout Response Signed
samlv2sp.attribute.label.spwantmnirequestsigned=Manage Name ID Request Signed
samlv2sp.attribute.label.spwantmniresponsesigned=Manage Name ID Response Signed
samlv2sp.attribute.label.spwantpOSTresponseSigned=Post Response Signed
samlv2.sp.property.updated=SAMLv2 Service Provider properties are updated
samlv2sp.attribute.label.paosassertconsumerservice=PAOS
samlv2sp.attribute.label.paosassertconsumerservicelocation=location
samlv2sp.attribute.label.paosassertconsumerserviceindex=index
samlv2sp.attribute.label.spArtMsgEncoding=Artifact Message Encoding
samlv2sp.attribute.label.artifactmessageEncoding=Encoding
samlv2idp.attribute.label.uri=URI
samlv2idp.attribute.label.form=FORM
samlv2.sp.provider.table.title.assertionconsumerservice=Assertion Consumer Service
samlv2.sp.assertionConsumerService.table.default.name=Default
samlv2.sp.assertionConsumerService.table.default.type=Type
samlv2.sp.assertionConsumerService.table.default.location=Location
samlv2.sp.assertionConsumerService.table.default.index=Index
samlv2.sppacse.help.SpAssertionConsumerService=Location denotes the URL to accept the respective request type. Index denotes the index of the URL in the standard metadata.
samlv2sp.attribute.help.SPuseNameIDAsSPUserID=Use value of Name ID from the incoming Assertion to find the local user as the final resort, if other means do not apply
samlv2sp.attribute.help.hosted.spDoNotWriteFederationInfo=Instructs the SP to not persist the SAML NameID into the \
User Data Store even if the NameID Format is urn:oasis:names:tc:SAML:2.0:nameid-format:persistent in the received \
Assertion and the Account Mapper has identified the local user. When local authentication is utilized for account \
linking purposes, enabling this feature will require end-users to locally authenticate for each SAML-based login.
samlv2sp.attribute.help.remote.spDoNotWriteFederationInfo=Instructs the hosted IdP to not persist the NameID into the \
User Data Store even if the NameID Format is urn:oasis:names:tc:SAML:2.0:nameid-format:persistent in the Assertion.
#authentication Context
samlv2.entityDescriptor.provider.section.title.authenticationContext=Authentication Context
samlv2.entityDescriptor.provider.table.title.authenticationContexts=Authentication Context
samlv2.entityDescriptor.provider.attribute.label.defaultAuthenticationContext=Default Authentication Context
samlv2.sp.attribute.label.spAuthncontextMapper=Mapper
samlv2.sp.attribute.label.spAuthncontextClassrefMapping=Class Reference Mapping
samlv2.sp.attribute.label.spAuthncontextComparisonType=Comparison Type
samlv2.sp.authenticationContext.table.name.contextReference.name=Context Reference
samlv2.sp.authenticationContext.table.name.level.name=Level
samlv2.sp.authenticationContext.table.name.supported.name=Supported
samlv2.idp.attribute.label.idpAuthncontextMapper=Mapper
samlv2.idp.attribute.label.idpAuthncontextClassrefMapping=ClassrefMapping
samlv2.idp.authenticationContext.table.name.supported.name=Supported
samlv2.idp.authenticationContext.table.name.contextReference.name=Context Reference
samlv2.idp.authenticationContext.table.name.value.name=Value
samlv2.idp.authenticationContext.table.name.key.name=Key
samlv2.idp.authenticationContext.table.name.level.name=Level
samlv2.authenticationContext.none.label=------ none ------
samlv2.authenticationContext.InternetProtocol.label=InternetProtocol
samlv2.authenticationContext.InternetProtocolPassword.label=InternetProtocolPassword
samlv2.authenticationContext.Kerberos.label=Kerberos
samlv2.authenticationContext.MobileOneFactorUnregistered.label=MobileOneFactorUnregistered
samlv2.authenticationContext.MobileTwoFactorUnregistered.label=MobileTwoFactorUnregistered
samlv2.authenticationContext.MobileOneFactorContract.label=MobileOneFactorContract
samlv2.authenticationContext.MobileTwoFactorContract.label=MobileTwoFactorContract
samlv2.authenticationContext.Password.label=Password
samlv2.authenticationContext.PasswordProtectedTransport.label=PasswordProtectedTransport
samlv2.authenticationContext.PreviousSession.label=PreviousSession
samlv2.authenticationContext.X509.label=X.509
samlv2.authenticationContext.PGP.label=PGP
samlv2.authenticationContext.SPKI.label=SPKI
samlv2.authenticationContext.XMLDSig.label=XMLDSig
samlv2.authenticationContext.Smartcard.label=Smartcard
samlv2.authenticationContext.SmartcardPKI.label=SmartcardPKI
samlv2.authenticationContext.SoftwarePKI.label=SoftwarePKI
samlv2.authenticationContext.Telephony.label=Telephony
samlv2.authenticationContext.NomadTelephony.label=NomadTelephony
samlv2.authenticationContext.PersonalTelephony.label=PersonalTelephony
samlv2.authenticationContext.AuthenticatedTelephony.label=AuthenticatedTelephony
samlv2.authenticationContext.SecureRemotePassword.label=SecureRemotePassword
samlv2.authenticationContext.TLSClient.label=TLSClient
samlv2.authenticationContext.TimeSyncToken.label=TimeSyncToken
samlv2.authenticationContext.unspecified.label=unspecified
samlv2.authenticationContext.key.option.none=None
samlv2.authenticationContext.key.option.service=Service
samlv2.authenticationContext.key.option.module=Module
samlv2.authenticationContext.key.option.user=User
samlv2.authenticationContext.key.option.role=Role
samlv2.authenticationContext.key.option.level=Authentication Level
samlv2.authenticationContext.key.option.resourceURL=Resource URL
samlv2.authenticationContext.priority.option.0=0
samlv2.authenticationContext.priority.option.1=1
samlv2.authenticationContext.priority.option.2=2
samlv2.authenticationContext.priority.option.3=3
samlv2.authenticationContext.priority.option.4=4
samlv2.authenticationContext.priority.option.5=5
samlv2.authenticationContext.priority.option.6=6
samlv2.authenticationContext.priority.option.7=7
samlv2.authenticationContext.priority.option.8=8
samlv2.authenticationContext.priority.option.9=9
samlv2.authenticationContext.priority.option.10=10
samlv2.none.label=- none -
samlv2.exact.label=exact
samlv2.minimum.label=minimum
samlv2.maximum.label=maximum
samlv2.better.label=better
samlv2.sp.attribute.label.spincludereqauthnctx=Include Request Authentication Context
samlv2sp.authnctx.help.spIncludeReqAuthnContext=Enable to include the Requested Authentication Context in the Authentication Request, enabled by default.
#ECP
samlv2sp.attribute.label.ecp=ECP Configuration
samlv2sp.attribute.label.ecp.ECPRequestIDPListFinderImpl=Request IDP List Finder Implementation
samlv2sp.attribute.label.ecp.ECPRequestIDPListGetComplete=Request IDP List Get Complete
samlv2sp.attribute.label.ecp.ECPRequestIDPList=Request IDP List
#SAE
samlv2sp.attribute.label.sae=SAE Configuration
samlv2sp.attribute.label.sae.saeSPUrl=SP URL
samlv2sp.attribute.label.sae.saeSPLogoutUrl=SP Logout URL
samlv2sp.attribute.label.sae.saeAppSecretList=Application Security Configuration
#Relay State URL List SP
samlv2sp.attribute.label.relayState=Relay State URL List
samlv2sp.attribute.label.relayState.relayStateUrlList= Relay State URL List
#Session Sync between IDP and SP
samlv2.attribute.label.SessionSyncEnabled=Session Synchronization
samlv2.attribute.label.help.idpSessionSyncEnabled=If this is enabled, when a session times out, the Identity Provider notifies all Service Providers to log out. A session may time out, for example, when max-idle time or max-session time is reached.
samlv2.attribute.label.help.spSessionSyncEnabled=If this is enabled, when a session times out, the Service Provider notifies all Identity Providers to log out. A session may time out, for example, when max-idle time or max-session time is reached.
# IDP Finder Implementation
samlv2.attribute.label.enableidpfinderforallsps=Enable Proxy IDP Finder for all SPs
samlv2.attribute.label.help.enableProxyIDPFinderForAllSPs=If this is enabled the proxy idp finder will be enabled for all the remote SPs regardless of what they have configured in their extended metadata
samlv2idp.attribute.label.proxy.idpfinderimplementation=IDP Finder Implementation
samlv2.attribute.label.proxyidpfinderimplementation=IDP Finder Implementation
samlv2idp.attribute.label.proxy.idpfinderjsp=IdP Finder JSP
samlv2idp.attribute.help.proxyIDPFinderJSP=Specify the JSP that will present the IdP List to the user, if required by the class implementation (example: proxyidpfinder.jsp)
samlv2idp.attribute.label.proxy.idpfinderclass=IDP Finder implementation class
samlv2idp.attribute.help.proxyIDPFinderClass=Defines an implementation class for the Proxy IDP Finder SPI. The implementation is used to find a preferred IdP to send the proxied Authentication Request
#XACML
samlv2.entityDescriptor.provider.attribute.label.providerLocation=Provider Location
samlv2.entityDescriptor.provider.attribute.label.protocolSupportEnum=Protocol Support Enumeration
samlv2.entityDescriptor.provider.attribute.label.Signing.KeyAlias=Signing Key Alias
samlv2.entityDescriptor.provider.attribute.label.Encryption.KeyAlias=Encryption Key Alias
samlv2.entityDescriptor.provider.attribute.label.basicAuth=Basic Authorization
samlv2.entityDescriptor.provider.attribute.label.basicAuthUser=User
samlv2.entityDescriptor.provider.attribute.label.basicAuthPassword=Password
samlv2.entityDescriptor.provider.attribute.label.wantXACMLAuthzDecisionQuerySigned=Authorization Decision Query Signed
samlv2.entityDescriptor.provider.attribute.label.wantXACMLAuthzDecisionResponseSigned=Authorization Decision Response Signed
samlv2.entityDescriptor.provider.attribute.label.wantAssertionEncrypted=Assertion Encrypted
samlv2.entityDescriptor.provider.attribute.label.cotlist=COT List
samlv2.entityDescriptor.provider.attribute.label.XACMLAuthzService=Authorization Service
samlv2.entityDescriptor.provider.attribute.label.XACMLAuthzServiceBinding=Binding
samlv2.entityDescriptor.provider.attribute.label.XACMLAuthzServiceLocation=Location
samlv2.entityDescriptor.pep.provider.attribute.help.protocolSupportEnum=Defines protocol specification supported by this PEP provider.
samlv2.entityDescriptor.pdp.provider.attribute.help.protocolSupportEnum=Defines protocol specification supported by this PDP provider.
samlv2.entityDescriptor.provider.attribute.help.Signing.KeyAlias=Defines the key alias that is used to sign requests and responses.
samlv2.entityDescriptor.provider.attribute.help.Encryption.KeyAlias=Defines the key alias to XACML encryption.
samlv2.entityDescriptor.provider.attribute.help.basicAuth=Basic authorization can be enabled to protect SOAP endpoints. Any provider accessing these endpoints must have the user and password defined in the following two properties: User Name and Password.
samlv2.entityDescriptor.provider.attribute.help.wantXACMLAuthzDecisionQuerySigned=When enabled, this attribute enforces that all queries be signed for the XACML authorization decision.
samlv2.entityDescriptor.provider.attribute.help.wantXACMLAuthzDecisionResponseSigned=When enabled, this attribute enforces that all response be signed for the XACML authorization decision.
samlv2.entityDescriptor.provider.attribute.help.XACMLAuthzServiceLocation=This attribute defines the type (binding) of the authorization request, and the URL endpoint for receiving the request. By default, the binding type is SOAP.
samlv2.entityDescriptor.provider.attribute.help.wantAssertionEncrypted=When enabled, this attribute enforces that all assection be encrypted.
samlv2.entityDescriptor.provider.pdp.updated=SAMLv2 XACML PDP properties are updated
samlv2.entityDescriptor.provider.pep.updated=SAMLv2 XACML PEP properties are updated
#Authority
samlv2.attributeauth.attribute.label.keysize=Key size
samlv2.attributeauth.attribute.label.algorithm=Algorithm
samlv2idp.attribute.label.signandencrypt=Signing and Encryption
samlv2idp.attribute.label.attributeservice=Attribute Service
samlv2idp.attribute.label.attrserviceloc=X.509
samlv2idp.attribute.label.defattrserviceloc=Basic
samlv2idp.attribute.label.deafultattrservicelocation=Location
samlv2idp.attribute.label.attrservicelocation=Location
samlv2sp.attribute.label.supportsx=Supports X.509
samlv2idp.attribute.label.idpattributeProfile=Attribute Profile
samlv2idp.attribute.label.idpdefaultattributeAuthorityMapper=Attribute Authority Mapper
samlv2idp.attribute.label.idpdefattriAuthMapper=Default Mapper
samlv2idp.attribute.label.idpx509attrAuthMapper=X.509 Mapper
samlv2idp.attribute.label.idpx509SubjectDataStoreAttrName=Subject Data Store
samlv2idp.provider.section.title.certalias=Cert Aliases, Signing and Encryption
samlv2idp.attribute.label.assertionIDRequestService=AssertionID Request
samlv2idp.attribute.label.soapAssertionIDRequest=Soap
samlv2idp.attribute.label.uriAssertionIDRequest=URI
samlv2idp.attribute.label.urilocation=location
samlv2idp.attribute.label.assertionIDrequestMapper=Mapper
samlv2.attrauth.property.updated=SAMLv2 Attribute Authority properties are updated
samlv2.authnauthority.attribute.label.keysize=Key size
samlv2.authnauthority.attribute.label.algorithm=Algorithm
samlv2idp.attribute.label.authnqueryservice=Authn Query Service URL
samlv2.authnauth.property.updated=SAMLv2 Authn Authority properties are updated
samlv2.attrquery.property.updated=SAMLv2 Attribute Query properties are updated
samlv2.attribute.label.metaAlias=Metaalias
samlv2idp.provider.section.title.members=Members
samlv2.affiliation.property.updated=SAMLv2 Affiliation properties are updated
samlv2.provider.section.title.owner=Owner
#inline help
samlv2.attributeauth.help.SubjectDataStoreAttrName=Attribute name which contains X.509 subject DN
samlv2.attributeauth.help.AttributeProfile=Only this profile is supported for both Basic and X.509 binding
samlv2.attributeauth.help.uriAssertionIDRequest=Mapping to find the matching assertion corresponding to assertion ID
samlv2.authnauth.help.authnQueryServLocation=URL which accepts authentication query request
samlv2.authnauth.help.secassertionIDRequestMapper=SPI implementation class to checks if the assertion requester using this URI is valid
samlv2.attributequery.help.attrnameidlist=Specifies NameIDFormats supported by attribute query requester
samlv2.spac.help.nameidlist=List of nameid formats the requestor will use to contact. Order listed shows the order of preference
samlv2.spac.help.tblAuthenticationContext=Defines mapping between IDP authentication context reference and authentication level to be set on SP side session
samlv2.spac.help.basicAuthentication=Configure basic authentication setting for Soap based binding
samlv2sp.attribute.help.SPAttributeMap=This mapping is the configuration used by the Attribue Mapper. Mapping should be defined as SAML ATTRIBUTE NAME=PROFILE ATTRIBUTE NAME in assertion. Example: EmailAddress=mail, Address=postaladdress.
samlv2sp.attribute.help.SPAutofedEnabled=Enable Auto Federation if not already federated
samlv2sp.attribute.help.SPAutofedAttribute=This SAML attribute identifies the user to auto federate with. If this attribute is not present in the assertion then the value of the NameID is used instead. If there is a mapping defined for this attribute, it will be used along with the value when searching for the local user. If the local user can not be found and Dynamic or Ignored Profile is enabled, the value will be used as the local user's UID instead.
samlv2sp.attribute.help.SPAccountMapper=Helps to find the user on local side based on incoming assertion
samlv2sp.attribute.help.SPTransientUser=Can be null. If specified this will be the mapped SP user incase of transient federation
samlv2sp.attribute.help.SPlocalAuthURL=For local authentication
samlv2sp.attribute.help.SPintermediateUrl=This is the intermediate point that SP will redirect to before the final relay state
samlv2sp.attribute.help.SPdefaultRelayState=This is the default relay state URL that the SP will redirect to, in case there is no relay state specified in the response
samlv2sp.attribute.help.SPAdapter=Implementation class for the SAML2ServiceProviderAdapter which is used to add application specific processing logic during federation process
samlv2sp.attribute.help.SPECPRequestIDPListFinderImpl=Implementation class of the IDP list finder SPI. This returns a list of preferred IDPs trusted by the ECP
samlv2sp.attribute.help.SPECPRequestIDPListGetComplete=Specify an URI reference that can be used to retrieve the complete IDP list if the IDPList element is not complete
samlv2sp.attribute.help.SPECPRequestIDPList=Defines a list of IDPs for the ECP to contact. This is used by the default implementation of the IDP Finder
samlv2sp.attribute.help.SPenableIDPProxy=Enable IDP Proxy if not enabled
samlv2sp.attribute.help.SPalwaysIdpProxy=Always proxy requests
samlv2sp.attribute.help.SPalwaysIdpProxy.txt=When this option is enabled, the IdP will proxy every single authentication request no matter it contains the Scoping element or not. Note: always proxy mode requires IDP Proxy to be enabled.
samlv2sp.attribute.help.SPidpProxyCount=Number of IDP proxies that the SP can have
samlv2sp.attribute.help.SPidpProxyList=A list of preferred IDPs that the SP would proxy to
samlv2sp.attribute.help.SAESPUrl=URL endpoint on Service Provider that can handle SAE requests. If this URL is empty (not configured), SAE single sign-on will not be enabled. Normal samlv2 single sign-on response will be sent to SP.
samlv2sp.attribute.help.saeSPLogoutUrl=URL endpoint on the Service Provider that can handle SAE global logout requests.
samlv2sp.attribute.help.saeAppSecretList.0=Each application should have one entry using the one of following formats:
samlv2sp.attribute.help.saeAppSecretList.1=\u25cf url= < SPAppURL > |type=symmetric|secret= < encoded_shared_secret >
samlv2sp.attribute.help.saeAppSecretList.2=\u25cf url= < SPAppURL > |type=symmetric|secret= < encoded_shared_secret > |encryptionalgorithm= < enc_alg > |encryptionkeystrength= < enc_strength >
samlv2sp.attribute.help.saeAppSecretList.3=\u25cf url= < SPAppURL > |type=asymmetric|privatekeyalias= < SP_signing_cert_alias >
samlv2sp.attribute.help.saeAppSecretList.4=\u25cf url= < SPAppURL > |type=asymmetric|privatekeyalias= < SP_signing_cert_alias > |encryptionalgorithm= < enc_alg > |encryptionkeystrength= < enc_strength > |pubkeyalias= < SPApp_public_key_alias >
samlv2sp.attribute.help.saeAppSecretList.5=The privatekeyalias attribute can be omitted if the signing cert alias is already configured in the Service Provider metadata configuration.
samlv2idp.attribute.help.nameidmap=Defines mapping between the Name ID format and user's profile attribute. Example urn:oasis:names:tc:SAML:1.1:nameid-format:emailAddress=mail or urn:oasis:names:tc:SAML:2.0:nameid-format:persistent=objectGUID;binary. If the defined Name ID format is used in protocol, the profile attribute value will be used as NameID value for the format in the Subject, the ;binary flag can be used to indicate that the profile attribute is binary and should be Base64 encoded when used as the NameID value.
samlv2idp.attribute.help.nameidlist=List of nameid formats the requestor will use to contact. Order listed shows the order of preference
samlv2.idpac.help.IdpAuthncontextMapper=Defines mapping between SP requested Authentication Context Reference and IDP authentication scheme and authentication level.
samlv2idp.IDPAassertionNotBeforeTimeSkew.help.inSeconds=Is in seconds. This is the skew time for NotBefore attributes in assertion
samlv2.idpassertionEffectiveTime.help.inSeconds=Is in seconds. Validity time of assertion for NotAfter attributes
samlv2.idpac.help.assertioncache=Enable assertion cache
samlv2.idpac.help.IDPdiscoveryBootstrappingEnabled=When selected, Bootstrapping Discovery Service Resource Offering will be generated for IDWSF.
samlv2idp.attribute.help.IdpAttributeMap=This mapping is the configuration used by the Attribute Mapper. The mapping should be defined as [NameFormatURI|]SAML ATTRIBUTE NAME=PROFILE ATTRIBUTE NAME in assertion. Example: EmailAddress=mail, Address=postaladdress, urn:oasis:names:tc:SAML:2.0:attrname-format:uri|urn:mace:dir:attribute-def:cn=cn The mapper also allows for static values to be defined. To define a static value, enclose the profile attribute name in double quotes. Example: partnerID="staticPartnerIDValue", urn:oasis:names:tc:SAML:2.0:attrname-format:uri|nameID="staticNameIDValue". To flag an attribute as being a binary value and have its value Base64 encoded, add ;binary to the end of the profile attribute name. Example: photo=photo;binary, urn:oasis:names:tc:SAML:2.0:attrname-format:uri|photo=photo;binary
samlv2idp.attribute.help.idpAccountMapper=Used to generate Name Identifier in Single Sign-on assertion and find user's identity from incoming request.
samlv2idp.attribute.help.idpDisableNameIDPersistence=Disables the persistence of the NameID values into the User Data \
Store for all persistent NameID-Formats. When the persistent NameID-Format is in use, disabling NameID persistence is not recommended. \
Note that by preventing the storage of the NameID values, the ManageNameID \
and the NameIDMapping SAML profiles will no longer work when using any persistent NameID-Formats. Existing account \
links that have been established (and persisted) previously, will not be removed when enabling this feature.
samlv2sp.attribute.help.SAEIDPUrl=URL endpoint on the Identity Provider that can handle SAE requests.
samlv2idp.attribute.help.saeAppSecretList.0=Each application should have one entry using the one of following formats:
samlv2idp.attribute.help.saeAppSecretList.1=\u25cf url= < IDPAppURL > |type=symmetric|secret= < encoded_shared_secret >
samlv2idp.attribute.help.saeAppSecretList.2=\u25cf url= < IDPAppURL > |type=symmetric|secret= < encoded_shared_secret > |encryptionalgorithm= < enc_Alg > |encryptionkeystrength= < enc_strength >
samlv2idp.attribute.help.saeAppSecretList.3=\u25cf url= < IDPAppURL > |type=asymmetric|pubkeyalias= < IDPApp_signing_cert >
samlv2idp.attribute.help.saeAppSecretList.4=\u25cf url= < IDPAppURL > |type=asymmetric|pubkeyalias= < IDPApp_signing_cert > |encryptionalgorithm= < enc_Alg > |encryptionkeystrength= < enc_strength >
samlv2idp.attribute.help.idpAuthUrl=URL to redirect for user authentication if required
samlv2idp.attribute.help.idpRpUrl=URL of the Reverse Proxy where the SAML endpoints are available
samlv2idp.attribute.help.idpRpUrl.txt=Used when the SAML endpoints are reverse proxied to a host not part of the OpenAM servers/sites, typically this would be the DAS's domain
samlv2sp.attribute.help.IdpECPSessionMapper=Defines an implementation class for the session mapper SPI. The mapper finds a valid session from HTTP servlet request on IDP with ECP profile.
samlv2idp.attribute.label.none=--None--
################################################################################
#
# Wsfed Properties
#
################################################################################
wsfed.attribute.page.title=General Properties Page
wsfedgen.attribute.label.name=Name
wsfedgen.attribute.label.description=Description
wsfedgen.attribute.label.protocol=Protocol
wsfedgen.attribute.label.role=Role
wsfedgen.attribute.label.realm=Realm
wsfed.attribute.label.tokenIssuerName=Token Issuer Name
wsfed.attribute.label.tokenIssuerEndpoint=Token Issuer Endpoint
wsfedsp.attribute.label.spdispname=SP Display Name
wsfedsp.attribute.label.idpdispname=IDP Display Name
wsfedsp.attribute.label.wreply.wreplyList=Valid WReply List
wsfedidp.attribute.label.activeRequestorProfileEnabled=Active Requestor Profile Enabled
wsfedidp.attribute.label.authenticatorClass=Authenticator Class
wsfedidp.attribute.label.endpointBaseUrl=Endpoint Base URL
wsfedidp.attribute.label.trustedAddresses=Trusted Addresses
wsfedidp.attribute.page.title=Identity Provider Properties Page
wsfedidp.attribute.label.dispname=Display Name
wsfedidp.attribute.label.signcertAlias=Alias
wsfedidp.attribute.label.idpassertionEffectiveTime=Assertion Effective Time
wsfedidp.attribute.label.idpAccountMapper=Account Mapper
wsfedidp.attribute.label.idpAttributeMapper=Attribute Mapper
wsfedidp.attribute.label.idpattributeMap=Attribute Map
wsfedidp.attribute.label.idptokenTypesOffered=Token Types Offered
wsfedidp.attribute.label.idpclaimTypesOffered=Claim Types
wsfedidp.attribute.label.idpclaimTypeOffered=Claim Types
wsfedidp.attribute.label.claimtypeDisplayName=Display Name
wsfedidp.attribute.label.claimtypeDisplayDescr=Description
wsfedidp.attribute.label.claimtypeDisplayUri=Uri
wsfedidp.attribute.label.idpclaimTypesOther=Other
wsfedidp.attribute.label.wreply.wreplyList=Valid wreply List
wsfed.idp.label1=UPN
wsfed.idp.label2=Email Address
wsfed.idp.label3=Common Name
wsfedsp.attribute.label.spassertionsigned=Assertion Signed
wsfedsp.attribute.label.sphomerealmdiscoveryservice=Home Realm Discovery Service
wsfedsp.attribute.page.title=Service Provider Properties Page
wsfedsp.attribute.label.dispname=Display Name
wsfedsp.attribute.label.spassertionEffectiveTime=Assertion Effective Time
wsfedsp.attribute.label.spAccountMapper=Account Mapper
wsfedsp.attribute.label.spAttributeMapper=Attribute Mapper
wsfedsp.attribute.label.spattributeMap=Attribute Map
wsfedsp.attribute.label.spDefaultRelayState=Default Relay State
wsfedsp.attribute.label.spassertionTimeSkew=Assertion Time Skew
label.cookie=cookie
label.UserAgentKey=UserAgentKey
wsfedsp.attribute.label.acctrealmcookiename=Account Realm Cookie Name
wsfedsp.attribute.label.useragentkey=User Agent Key
wsfed.general.property.updated = WSFED General properties are updated
wsfed.sp.property.updated = WSFED Service Provider properties are updated
wsfed.idp.property.updated = WSFED Identity Provider properties are updated
wsfedidp.provider.section.title.signcertalias=Signing Cert Alias
wsfedidp.provider.section.title.claimtypes=Claim Types
wsfedidp.provider.section.title.acctmapper=Account Mapper
wsfedidp.provider.section.title.attrMapper=Attribute Mapper
wsfedidp.provider.section.title.asserefftime=Assertion Effective Time
wsfedidp.provider.section.title.wreply=Valid wreply List
wsfedidp.provider.section.title.activerequestor=Active Requestor Profile settings
wsfedsp.provider.section.title.assertionsigned=Assertion Signed
wsfedsp.provider.section.title.spassertimeskew=Assertion Skew Time
wsfedsp.provider.section.title.defaultrelaystate=Default Relay State
wsfedsp.provider.section.title.sphomeRealmDisc=Home Realm Discovery
wsfedsp.provider.section.title.spacctrealmselection=Account Realm Selection
wsfedsp.provider.section.title.help.acctmapper=Helps to find the user on local side based on incoming assertion
wsfedsp.provider.section.title.help.spattributeMap=This mapping is the configuration used by the Attribue Mapper. Mapping should be defined as ASSERTION ATTRIBUTE NAME=LOCAL PROFILE ATTRIBUTE NAME. Example: EmailAddress=mail, Address=postaladdress
wsfedsp.provider.section.title.help.asserefftime=Validity time of assertion for NotAfter attributes
wsfedsp.provider.section.title.help.spassertionTimeSkew=This is the skew time for NotBefore attributes in assertion
wsfedsp.provider.section.title.help.defaultrelaystate=This is the default relay state URL that the SP will redirect to, in case there is no relay state specified in the response
wsfedsp.provider.section.title.help.sphomeRealmDisc=Helps in determining the location of the Identity Provider.
wsfedsp.provider.section.title.help.acctRealmSelection=Specify Identity Provider selection mechanism and configuration. Either cookie or HTTP request header attribute can be used to find the Identity Provider.
wsfed.provider.section.title.help.idpAccountMapper=Used to generate Name Identifier in Single Sign-on assertion and find user's identity from incoming request
wsfed.provider.section.title.help.idpattributeMap=This mapping is the configuration used by the Attribute Mapper. The \
mapping should be defined as [NameSpaceURI|]SAML ATTRIBUTE NAME=PROFILE ATTRIBUTE NAME in assertion. \
Example: EmailAddress=mail, Address=postaladdress, http://schemas.xmlsoap.org/claims|UPN=mail. To flag an attribute \
as being a binary value and have its value Base64 encoded, add ;binary to the end of the profile attribute name. \
Example: photo=photo;binary, http://schemas.microsoft.com/LiveID/Federation/2008/05|ImmutableID=objectGUID;binary
wsfed.provider.section.title.help.idpassertionEffectiveTime=This is the validity time of assertion
wsfedidp.provider.section.title.nameidDomain=Name Identifier and Mappings
wsfedidp.attribute.label.idpNameIDFormat=Name ID Format
wsfedidp.attribute.label.idpnameIDAttribute=Name ID Attribute
wsfed.attribute.label.idpnameincludesDomain=Name Includes Domain
wsfedidp.attribute.label.idpdomainAttribute=Domain Attribute
wsfedidp.attribute.label.idpupnDomain=UPN Domain
wsfed.provider.section.title.help.idpnameIdpFormatMap=NameID-Format URI - defaults to UPN. Could also have "Email" or \
"Common Name", or potentially any other valid NameID-Format value.
wsfed.provider.section.title.help.idpNameIDAttribute=user profile attribute whose value is to be used as the outgoing NameID - if not set, defaults to short user id "uid" (i.e. current functionality). The ;binary flag can be used to indicate that the profile attribute is binary and should be Base64 encoded when used as the NameID value.
wsfed.provider.section.title.help.idpdomainAttribute=user profile attribute whose value is to be used as the domain for user principal name (UPN) - no default - should be of the form example.com
wsfed.provider.section.title.help.idpupnDomain=UPN domain - no default
wsfed.provider.section.title.help.idpnameIncludesDomain=(boolean) does the user profile attribute includes the domain? Defaults to false - i.e. we must append '@' and the domain.
wsfed.provider.section.title.help.spNameIDAttribute=attribute to be used in search for match on incoming nameId - if not set, defaults to short user id "uid" (current functionality)
wsfed.provider.section.title.help.spnameIncludesDomain=whether the nameId in the user's profile includes the domain - defaults to false
wsfed.provider.section.title.help.spdomainAttribute=attribute to be used in search for match on incoming domain for UPN - no default
wsfedidp.provider.section.title.help.activeRequestorProfileEnabled=Whether this WS-Fed IdP should handle Active Requestor Profile requests.
wsfedidp.provider.section.title.help.authenticatorClass=The fully qualified class name of the WsFedAuthenticator implementation to be used when authenticating the end-users.
wsfedidp.provider.section.title.help.endpointBaseUrl=The Base URL to use in the MEX response. Example value: http://openam.example.com:8080/openam
wsfedidp.provider.section.title.help.trustedAddresses=List of trusted wsa:Address values. When working with Office365, specify "urn:federation:MicrosoftOnline".
################################################################################
#
# Discovery Service
#
################################################################################
discovery.service.table.providerResourceIdMapper.name=Classes for ResourceID Mapper Plug-in
discovery.service.table.providerResourceIdMapper.noentries=There are no resource ID mapping.
discovery.service.table.providerResourceIdMapper.providerId=Provider ID
discovery.service.table.providerResourceIdMapper.idMapper=ID Mapper
discovery.service.table.providerResourceIdMapper.action=Action
discovery.service.table.providerResourceIdMapper.add.button=New...
discovery.service.table.providerResourceIdMapper.delete.button=Delete
discovery.service.table.providerResourceIdMapper.action.edit.label=Edit
discovery.service.providerResourceIdMapper.create.page.title=New Resource ID Mapping.
discovery.service.providerResourceIdMapper.edit.page.title=Edit Resource ID Mapping.
discovery.service.providerResourceIdMapper.missing.idmapper.message=ID Mapper is required.
discovery.service.providerResourceIdMapper.missing.providerId.message=Provider ID is required.
discovery.service.table.bootstrapResourceOffering.name=Resource Offerings for Bootstrapping
discovery.service.table.bootstrapResourceOffering.noentries=There are no resource offerings
discovery.service.table.bootstrapResOff.abstract=Description
discovery.service.table.bootstrapResOff.resourceId=Resource ID Attribute
discovery.service.table.bootstrapResOff.resourceIdValue=Resource ID Value
discovery.service.table.bootstrapResOff.action=Action
discovery.service.table.bootstrapResOff.add.button=New...
discovery.service.table.bootstrapResOff.delete.button=Delete
discovery.service.table.bootstrapResOff.action.edit.label=Edit
discovery.service.serverList.create.page.title=New Resource Offering.
discovery.service.serverList.edit.page.title=Edit Resource Offering.
discovery.service.table.entry.deleted=Resource Offering was deleted.
discovery.service.table.entry.deleted.pural=Resource Offerings were deleted.
discovery.service.table.bootstrapResOff.section.serviceInstance=Service Instance
discovery.service.table.bootstrapResOff.serviceType=Service Type
discovery.service.table.bootstrapResOff.serviceType.help=URI defining the type of service this service instance implements.
discovery.service.table.bootstrapResOff.providerID=Provider ID
discovery.service.table.bootstrapResOff.providerID.help=URI of the provider of the service instance.
discovery.service.table.bootstrapResOff.securityMechID=Service Description
discovery.service.table.bootstrapResOff.securityMechID.help=It is required to define 1 or more service descriptions.
discovery.service.table.bootstrapResOff.securityMechID.noentries=There are no descriptions defined.
discovery.service.table.bootstrapResOff.section.resourceOfferingOptions=Resource Offering Options
discovery.service.table.bootstrapResOff.resourceOfferingOptionsOptions=Options
discovery.service.table.bootstrapResOff.resourceOfferingOptionsOptionsList=Option List
discovery.service.table.bootstrapResOff.resourceOfferingOptionsOptions.label=Service has no options to advertise.
discovery.service.table.bootstrapResOff.section.directives=Directives
discovery.service.table.bootstrapResOff.lblResourceOfferingOptionsDirectives=Directives
discovery.service.table.bootstrapResOff.lblResourceOfferingOptionsRefsFor=Description ID Refs For
discovery.service.table.bootstrapResOff.lblResourceOfferingOptionsDirectivesGenerateBearerToken.label= GenerateBearerToken
discovery.service.table.bootstrapResOff.lblResourceOfferingOptionsDirectivesAuthenticateRequester.label=AuthenticateRequester
discovery.service.table.bootstrapResOff.lblResourceOfferingOptionsDirectivesEncryptResourceID.label=EncryptResourceID
discovery.service.table.bootstrapResOff.lblResourceOfferingOptionsDirectivesAuthenticateSessionContext.label=AuthenticateSessionContext
discovery.service.table.bootstrapResOff.lblResourceOfferingOptionsDirectivesAuthorizeRequester.label=AuthorizeRequester
discovery.service.bootstrapResOff.create.page.title=New Resource Offerings
discovery.service.bootstrapResOff.edit.page.title=Edit Resource Offerings
discovery.service.bootstrapResOff.missing.service.desc.message=One or more service descriptions are required.
discovery.service.bootstrapResOff.missing.serviceType.message=Service type is required.
discovery.service.bootstrapResOff.missing.providerId.message=Provider ID is required.
discovery.service.bootstrapResOff.missing.resourceIdValue.message=Resource ID Value is required.
discovery.service.bootstrapResOff.securityMechID.ID=Security Mechanism ID
discovery.service.bootstrapResOff.securityMechID.Action=Action
discovery.service.bootstrapResOff.securityMechID.add.button=New Description ...
discovery.service.bootstrapResOff.securityMechID.delete.button=Delete
discovery.service.table.description.securityMechID=Security Mechanism ID
discovery.service.table.description.concreteServiceDescription.soapHTTP.label=Brief SoapHttp Description
discovery.service.table.description.concreteServiceDescription.wsdl.label=WSDL Reference
discovery.service.table.description.concreteServiceDescription=Concrete Service Description
discovery.service.description.create.page.title=New Security Mechanism ID
discovery.service.description.edit.page.title=Edit Security Mechanism ID
discovery.service.description.missing.securityMechId.message=One or more security mechanism IDs are required.
discovery.service.table.description.concreteServiceDescription.soapHttpEndPoint.label=End Point URL
discovery.service.table.description.concreteServiceDescription.soapHttpAction.label=SOAP Action
discovery.service.table.description.concreteServiceDescription.WSDLURI.label=WSDL URI
discovery.service.table.description.concreteServiceDescription.wsdlServiceNameSpace.label=Service Name Space
discovery.service.table.description.concreteServiceDescription.wsdlServiceLocalPart.label=Service Local Part
discovery.service.description.missing.endPointUrl.message=End Point URL is required.
discovery.service.description.missing.wsdlURI.message=WSDL URI is required.
discovery.service.description.missing.nameSpace.message=WSDL Service Name Space is required.
discovery.service.description.missing.localPart.message=WSDL Service Local Part is required.
title.realm.resource.offering=Discovery Resource Offering
table.realm.resource.offerings.button.new=Add...
table.realm.resource.offerings.button.delete=Delete
table.realm.resource.offerings.column.service.name=Service Type
table.realm.resource.offerings.column.abstract=Abstract
table.realm.resource.offering.title=Discovery Resource Offering
table.realm.resource.offering.empty.message=There are no resource offerings.
title.idm.resource.offering=Discovery Resource Offering
table.idm.resource.offerings.button.new=Add...
table.idm.resource.offerings.button.delete=Delete
table.idm.resource.offerings.column.service.name=Service Type
table.idm.resource.offerings.column.abstract=Abstract
table.idm.resource.offering.title=Discovery Resource Offering
table.idm.resource.offering.empty.message=There are no resource offerings.
#################################################################################
#
# SOAP Binding Service
#
################################################################################
soapBinding.service.table.requestHandlerList.name=Request Handler List
soapBinding.service.table.requestHandlerList.noentries=There are no request handlers.
soapBinding.service.table.requestHandlerList.key=Key
soapBinding.service.table.requestHandlerList.class=Class
soapBinding.service.table.requestHandlerList.soapAction=SOAP Action
soapBinding.service.table.requestHandlerList.action=Action
soapBinding.service.table.requestHandlerList.add.button=New...
soapBinding.service.table.requestHandlerList.delete.button=Delete
soapBinding.service.table.requestHandlerList.action.edit.label=Edit...
soapBinding.service.table.requestHandlerList.action.dup.label=Duplicate...
soapBinding.service.table.requestHandlerList.action.dup.copy=_copy
soapBinding.service.requestHandlerList.missing.key.message=Key is required.
soapBinding.service.requestHandlerList.missing.class.message=Class is required.
soapBinding.service.requestHandlerList.create.page.title=New Request Handler
soapBinding.service.requestHandlerList.edit.page.title=Edit Request Handler
soapBinding.service.requestHandlerList.duplicate.page.title=Duplicate Request Handler
soapBinding.service.requestHandlerList.already.exist=Request Handler already exist.
#################################################################################
#
# Web Services Personal Profile
#
################################################################################
webservices.personal.profile.supportedContainers.table.header=Supported Containers
webservices.personal.profile.supportedContainers.table.noentries=There are no supported containers.
webservices.personal.profile.table.supportedContainers.name=Name
webservices.personal.profile.table.supportedContainers.type=Type
webservices.personal.profile.table.supportedContainers.action=Action
webservices.personal.profile.table.supportedContainers.action.edit.label=Edit
webservices.personal.profile.table.supportedContainers.add.button=New...
webservices.personal.profile.table.supportedContainers.delete.button=Delete
webservices.personal.profile.table.supportedContainers.type.container=Container
webservices.personal.profile.table.supportedContainers.type.extension=Extension
webservices.personal.profile.table.supportedContainers.type.plugin=Plug-in
webservices.personal.profile.missing.supportedContainerName.message=Container name is required.
webservices.personal.profile.supportedContainer.name.label=Container Name
webservices.personal.profile.supportedContainer.extension.label=Extension
webservices.personal.profile.supportedContainer.plugin.label=Plug-in
webservices.personal.profile.supportedContainer.create.page.title=New Supported Container
webservices.personal.profile.supportedContainer.edit.page.title=Edit Supported Container
webservices.personal.profile.dsAttributeMapList.table.header=PPLDAP Attribute Map
webservices.personal.profile.dsAttributeMapList.table.noentries=There are no mappings.
webservices.personal.profile.table.dsAttributeMapList.name=Name Prefix
webservices.personal.profile.table.dsAttributeMapList.map=LDAP Attribute
webservices.personal.profile.table.dsAttributeMapList.action=Action
webservices.personal.profile.table.dsAttributeMapList.action.edit.label=Edit
webservices.personal.profile.table.dsAttributeMapList.add.button=New...
webservices.personal.profile.table.dsAttributeMapList.delete.button=Delete
webservices.personal.profile.missing.dsAttributeMapList.name.message=Name prefix is required.
webservices.personal.profile.missing.dsAttributeMapList.attribute.message=LDAP Attribute is required.
webservices.personal.profile.dsAttributeMapList.create.page.title=New LDAP Attribute Mapping
webservices.personal.profile.dsAttributeMapList.edit.page.title=Edit LDAP Attribute Mapping
#################################################################################
#
# Web Service Authentication Service
#
################################################################################
webservices.authentication.service.table.handles.name=Mechanism Handlers List
webservices.authentication.service.table.handles.noentries=There are no handlers.
webservices.authentication.service.table.handlers.key=Key
webservices.authentication.service.table.handlers.class=Class
webservices.authentication.service.table.handlers.action=Action
webservices.authentication.service.table.handlers.add.button=New...
webservices.authentication.service.table.handlers.delete.button=Delete
webservices.authentication.service.table.handlers.action.edit.label=Edit
webservices.authentication.service.handlers.missing.key.message=Key is required.
webservices.authentication.service.handlers.missing.class.message=Class is required.
webservices.authentication.service.handlers.create.page.title=New Mechanism Handler
webservices.authentication.service.handlers.edit.page.title=Edit Mechanism Handler
webservices.authentication.service.handlers.duplicates=Handler with that key already exists. Duplicates are not allowed.
breadcrumbs.webservices.personalprofile=Personal Profile
breadcrumbs.webservices.personalprofile.supportedcontainer.add=New Supported Container
breadcrumbs.webservices.personalprofile.supportedcontainer.edit=Edit Supported Container
breadcrumbs.webservices.personalprofile.ds.attributemaplist.add=New LDAP Attribute Map List
breadcrumbs.webservices.personalprofile.ds.attributemaplist.edit=Edit LDAP Attribute Map List
breadcrumbs.webservices.discovery=Discovery Service
breadcrumbs.webservices.resourceOffering=Resource Offering
breadcrumbs.webservices.discovery.bootstrap.resoffering.add=Add Resource Offering for Bootstrapping
breadcrumbs.webservices.discovery.bootstrap.resoffering.edit=Resource Offering for Bootstrapping
breadcrumbs.webservices.discovery.resourceid.mapper.add=New ResourceID Mapper Plug-in
breadcrumbs.webservices.discovery.resourceid.mapper.edit=Edit Class for ResourceID Mapper Plug-in
breadcrumbs.webservices.discovery.description.add=New Discovery Description
breadcrumbs.webservices.discovery.description.edit=Discovery Description
breadcrumbs.webservices.soapbinding=SOAP Binding
breadcrumbs.webservices.soapbinding.requesthandlerlist.add=Add Request Handler
breadcrumbs.webservices.soapbinding.requesthandlerlist.edit=Request Handler
breadcrumbs.webservices.soapbinding.requesthandlerlist.dup=Duplicate Request Handler
breadcrumbs.webservices.authentication=Authentication Service
breadcrumbs.webservices.authentication.mechanism.handler.add=New Mechanism Handler
breadcrumbs.webservices.authentication.mechanism.handler.edit=Mechanism Handler - {0}
breadcrumbs.webservices.security.token.service=Security Token Service
################################################################################
#
# Import Entity Provider
#
################################################################################
import.entity.title=Import Entity Provider
import.entity.help.message=Use this page to import the metadata...
import.entity.missing.metadata=The standard metadata file is required for importing.
import.entity.error=Invalid metadata file.
import.entity.populaterealmdata.error=Incorrect metadata format.
import.standard.metadata.label=Standard metadata Configuration
import.standard.filename.label=File Name
import.extended.metadata.label=Extended metadata Configuration
import.extended.filename.label=File Name
import.entity.metadata.success={0} was/were successfully imported.
button.choose.file=Choose File
import.entity.realm.name.label=Realm Name
import.standard.url.label=URL Location
import.extended.url.label=URL Location
button.upload.file=Upload File
file.uploader.title=Select File to Upload
################################################################################
#
# Web Service Profile
#
################################################################################
web.services.profile.password=Password
web.services.profile.password-confirm=Password (confirm)
web.services.profile.desc=Description
web.services.profile.security-mech-header=Security Mechanism
web.services.profile.securitytokenendpoint=Security Token Service Endpoint
web.services.profile.securitytokenmetadataendpoint=Security Token metadata Endpoint
web.services.exception.securitytoken.info.missing=Security Token Service Endpoint and Security Token Metadata Endpoint are required.
web.services.profile.device-status=Device Status
web.services.profile.device-status-active=Active
web.services.profile.device-status-inactive=Inactive
web.services.client.profile.isrequestsigned=Is Request Signed
web.services.client.profile.isrequestencrypted=Is Request Encrypted
web.services.client.profile.isresponsesigned=Is Response Signature Verified
web.services.client.profile.isresponsedecrypted=Is Response Decrypted
web.services.client.profile.isRequestHeaderEncrypt=Is Request Header Encrypted
web.services.client.profile.publicKeyAlias=Web Service Provider's public key
web.services.client.profile.publicKeyAlias.help=Key to encrypt Web Service Request.
web.services.provider.profile.isresponsesigned=Is Response Signed
web.services.provider.profile.isresponsedecrypted=Is Response Encrypted
web.services.provider.profile.isrequestsigned=Is Request Signature Verified
web.services.provider.profile.isrequestencrypted=Is Request Decrypted
web.services.provider.profile.isRequestHeaderDecrypted=Is Request Header Decrypted
web.services.provider.profile.publicKeyAlias=Web Service Client's public key
web.services.provider.profile.publicKeyAlias.help=Key to encrypt Web Service Response.
web.services.provider.profile.keyType=Key Type for signing and encryption
web.services.profile.keystoreusage=Keystore Usage
web.services.profile.keystoreusage-default=Use Default
web.services.profile.keystoreusage-custom=Use Custom (enter information below)
web.services.profile.keystore-header=Location of Key Store (Mandatory if Use Default Keystore is not checked).
web.services.profile.keystorelocation=Location of Key Store
web.services.profile.keystorepassword=Password of Key Store
web.services.profile.keypassword=Password of Key
web.services.profile.missing-keystore-info=Key Store Location, Password and Key Password are required.
web.services.profile.certalias=Certificate Alias
web.services.profile.username-token-header=Credential for User Token
web.services.profile.usernametokenname=Name
web.services.profile.usernametokenpassword=Password
web.services.profile.forceuserauthn=User Athentication Required
web.services.profile.authenticationchain=Authentication Chain
web.services.profile.authenticationchain-none=[none]
web.services.profile.preserve-security-header=Preserve Security Headers in Message
web.services.profile.libertyservicetype=Liberty Service Type URN
web.services.profile.wssproxyEndPoint=Web Service Security Proxy EndPoint
web.services.profile.wssproxyEndPoint.help=This end point is optional unless it is configured to use web security proxy.
web.services.profile.wspendpoint=Web Service Endpoint
web.services.profile.wspendpoint.help=This end point is optional unless the web service client is configured to use tokens from STS OR Liberty tokens.
web.services.profile.wsp.configuration.policyAttributeValues=WS-Policy
web.services.profile.wsp.configuration.inputPolicyAttributeValues=Input Policy
web.services.profile.wsp.configuration.outputPolicyAttributeValues=Output Policy
entity.attribute.label.identityType=Type
entity.attribute.label.identityType.provider=Web Service Provider
entity.attribute.label.identityType.client=Web Service Client
web.services.profile.username-token-tblheader=Credential for User Token
web.services.profile.username-token-tbl-add-btn=Add
web.services.profile.username-token-tbl-remove-btn=Remove
web.services.profile.username-token-tbl-col-name=Name
web.services.profile.username-token-tbl-password-name=Password
web.services.profile.username-token-add-btn=Add
breadcrumbs.add-web-service-usercred=Add User Credential
breadcrumbs.edit-web-service-usercred=Edit User Credential
breadcrumbs.add-web-service-usercred-mandate-username-password=User name and password are required.
web.services.profile.username-token-no-entries=There are no entries.
web.services.profile.error-user-cred-exists=User name already existed.
web.services.security.token.token.issuance.attributes.section.title=Token Issuance Attributes
web.services.security.token.stsIssuer=Issuer
web.services.security.token.stsEndPoint=End Point
web.services.security.token.stsEncryptIssuedKey=Encryption Issued Key
web.services.security.token.stsEncryptIssuedToken=Encryption Issued Token
web.services.security.token.stsLifetime=Lifetime for Security Token
web.services.security.token.stsLifetime.inline.help=Time in Milliseconds
web.services.security.token.stsTokenImplClass=Token Implementation class
web.services.security.token.stsCertAlias=Certificate Alias Name
web.services.security.token.stsCertAlias.inline.help=Key to Sign the Security Token
web.services.security.token.clientusertoken=STS End User Token Plugin class
web.services.security.token.security.section.title=Security
web.services.security.token.Security.Mechanism=Security Mechanism
web.services.security.token.Security.Mechanism.inline.help=Security Token Accepted by STS services.
web.services.security.token.authenticationchain=Authentication Chain
web.services.security.token.user.credential=User Credential
web.services.security.token.user.credential.table.title=User Credential
web.services.security.token.detect.message.replay=Detect Message Replay
web.services.security.token.detect.user.token.replay=Detect User Token Replay
web.services.security.token.user.credential.empty.table.message=None
web.services.security.token.user.credential.table.user.name.col=User Name
web.services.security.token.user.credential.table.password.col=Password
web.services.security.token.user.credential.table.add.button=Add
web.services.security.token.user.credential.table.delete.button=Delete
web.services.security.token.user.credential.edit.page.title=User Credential
web.services.security.token.user.credential.user.name=User Name
web.services.security.token.user.credential.user.password=User Password
web.services.security.token.singing.and.encryption.section.title=Signing and Encryption
web.services.security.token.singing.and.encryption.subsection.title.singing=Signing
web.services.security.token.singing.and.encryption.subsection.title.encryption=Encryption
web.services.security.token.isRequestSign=Is Request Signature Verified
web.services.security.token.isRequestEncryptionEnabled=Is Request Encryption Enabled
global.configuration.sts.is.request.decrypted=Is Request Decrypted
web.services.security.token.isRequestHeaderEncrypt=Header
web.services.security.token.isRequestEncrypt=Body
web.services.security.token.isResponseSign=Is Response Signed Enabled
web.services.security.token.Body=Body
web.services.security.token.SecurityToken=SecurityToken
web.services.security.token.Timestamp=Timestamp
web.services.security.token.To=To
web.services.security.token.From=From
web.services.security.token.ReplyTo=ReplyTo
web.services.security.token.Action=Action
web.services.security.token.MessageID=MessageID
web.services.security.token.isResponseEncrypt=Is Response Encrypted
web.services.security.token.keyStore.section.title=Key Store
web.services.security.token.privateKeyAlias=Private Key Alias
web.services.security.token.privateKeyAlias.inline.help=Key to Sign Web Service (WS-Trust) Response.
web.services.security.token.privateKeyType=Private Key Type
web.services.security.token.publicKeyAlias=Public Key Alias of Web Service (WS-Trust) Client
web.services.security.token.publicKeyAlias.inline.help=Key to encrypt Web Service (WS-Trust) Response.
web.services.security.token.kerberos.configuration.section.title=Kerberos Configuration
web.services.security.token.Kerberos.subtitle=Kerberos Configuration
web.services.security.token.KerberosDomainServer=Kerberos Domain Server
web.services.security.token.KerberosDomain=Kerberos Domain
web.services.security.token.KerberosServicePrincipal=Kerberos Service Principal
web.services.security.token.KerberosKeyTabFile=Kerberos Key Tab File
web.services.security.token.isVerifyKrbSignature=Is Verify Kerberos Signature
web.services.security.token.isVerifyKrbSignature.inline.help=This is optional and must be enabled only when JDK6 is used.
web.services.security.token.signingRefType=Signing Reference Type
web.services.security.token.EncryptionAlgorithm=Encryption Algorithm
web.services.security.token.EncryptionStrength=Encryption Strength
web.services.security.token.EncryptionStrength.inline.help=For AES, key strengths of 128, 192, 256 are supported. For 3DES, 0, 112 or 168 are supported.
web.services.security.token.SAMLConfiguration.section.title=SAML Configuration
web.services.security.token.SAMLConfiguration.section.title.inline.help=This SAML configuration is used to request SAML attribute mapping in the generated Security token (SAML Assertion) when this STS behaves as WSP and gets a SAML Token/Assertion generated from another STS.
web.services.security.token.SAMLAttributeMapping=SAML Attribute Mapping
web.services.security.token.SAMLAttributeMapping.inline.help=The SAML attribute mapping for an assertion that is generated for the STS
web.services.security.token.NameIDMapper=NameID Mapper
web.services.security.token.NameIDMapper.inline.help=The SAML NameID Mapper for an assertion that is generated for the STS
web.services.security.token.includeMemberships=Should Include Memberships
web.services.security.token.includeMemberships.inline.help=When enabled, the generated assertion contains user memberships as SAML attributes.
web.services.security.token.attribute.namespace=Attribute Namespace
web.services.security.token.attribute.namespace.inline.help=The SAML Attribute Namespace for an assertion that is generated for STS.
web.services.security.token.token.validation.attributes.section.title=Token Validation Attributes
web.services.security.token.trustedIssuers=Trusted Issuers
web.services.security.token.trustedIPAddresses=Trusted IP Addresses
sts.button.export.policy=Export Policy
page.title.sts.export.policy=Export Policy
web.services.profile.sts.configuration.policyAttributeValues=STS Policy
web.services.profile.sts.configuration.inputPolicyAttributeValues=Input Policy
web.services.profile.sts.configuration.outputPolicyAttributeValues=Output Policy
import.entity.information.message=This page can be used to create entity providers based on pre-existing metadata files which define an entity provider. The standard metadata file is mandatory. Importing extended metadata must be entered at the same time as the standard metadata. It cannot be imported separately.
button.browse=Browse...
button.upload=Upload...
file.chooser.title=Select File to Import
entity.deleted.message={0} was/were removed.
entity.deleted.failed.message=Errors occurred while trying to delete {0}.
general.error.message=An error occurred during the previous operation.
generic.error.message=An error occurred during the previous operation {0}.
protocol.mismatch=The extended and standard metadata types are not of the same protocol. Check the metadata and try importing again.
federation.SAMLv2General.label=General
federation.SAMLv2General.status=General properties
federation.SAMLv2General.tooltip=Configure this entities General properties
federation.SAMLv2IDP.label=IDP
federation.SAMLv2IDP.status=IDP properties
federation.SAMLv2IDP.tooltip=Configure this entities IDP properties
federation.SAMLv2SP.label=SP
federation.SAMLv2SP.status=SP properties
federation.SAMLv2SP.tooltip=Configure this entities SP properties
federation.SAMLv2PDP.label=XACML PDP
federation.SAMLv2PDP.status=XACML PDP properties
federation.SAMLv2PDP.tooltip=Configure this entities XACML PDP properties
federation.SAMLv2PEP.label=XACML PEP
federation.SAMLv2PEP.status=XACML PEP properties
federation.SAMLv2PEP.tooltip=Configure this entities XACML PEP properties
federation.SAMLv2AttrAuthority.label=Attribute Authority
federation.SAMLv2AttrAuthority.status=SAML Attribute Authority properties
federation.SAMLv2AttrAuthority.tooltip=Configure this entities Attribute Authority related properties
federation.SAMLv2AuthnAuthority.label=Authn Authority
federation.SAMLv2AuthnAuthority.status=SAML Authn Authority properties
federation.SAMLv2AuthnAuthority.tooltip=Configure this entities Authn Authority related properties
federation.SAMLv2AttrQuery.label=Attribute Query
federation.SAMLv2AttrQuery.status=Attribute Query properties
federation.SAMLv2AttrQuery.tooltip=Configure this entities Attribute Query related properties
federation.SAMLv2IDPAssertionContent.label=Assertion Content
federation.SAMLv2IDPAssertionContent.status=Assertion Content properties
federation.SAMLv2IDPAssertionContent.tooltip=Configure this IDP's Assertion Content related properties
federation.SAMLv2IDPAssertionProcessing.label=Assertion Processing
federation.SAMLv2IDPAssertionProcessing.status=Assertion Processing properties
federation.SAMLv2IDPAssertionProcessing.tooltip=Configure this IDP's Assertion Processing related properties
federation.SAMLv2IDPServices.label=Services
federation.SAMLv2IDPServices.status=IDP Services properties
federation.SAMLv2IDPServices.tooltip=Configure this IDP Services related properties
federation.SAMLv2IDPAdvanced.label=Advanced
federation.SAMLv2IDPAdvanced.status=IDP Advanced properties
federation.SAMLv2IDPAdvanced.tooltip=Configure this IDP's Advanced properties
federation.SAMLv2SPAssertionContent.label=Assertion Content
federation.SAMLv2SPAssertionContent.status=Assertion Content properties
federation.SAMLv2SPAssertionContent.tooltip=Configure this SP's Assertion Content related properties
federation.SAMLv2SPAssertionProcessing.label=Assertion Processing
federation.SAMLv2SPAssertionProcessing.status=Assertion Processing properties
federation.SAMLv2SPAssertionProcessing.tooltip=Configure this SP's Assertion Processing related properties
federation.SAMLv2SPServices.label=Services
federation.SAMLv2SPServices.status=IDP Services properties
federation.SAMLv2SPServices.tooltip=Configure this SP Services related properties
federation.SAMLv2SPAdvanced.label=Advanced
federation.SAMLv2SPAdvanced.status=IDP Advanced properties
federation.SAMLv2SPAdvanced.tooltip=Configure this SP's Advanced properties
federation.SAMLv2Affiliate.label=Affiliate
federation.SAMLv2Affiliate.status=Affiliate properties
federation.SAMLv2Affiliate.tooltip=Configure this entities Affiliation related properties
federation.WSFedGeneral.label=General
federation.WSFedSP.label=SP
federation.WSFedIDP.label=IDP
federation.IDFFGeneral.label=General
federation.IDFFIDP.label=IDP
federation.IDFFSP.label=SP
federation.IDFFAffiliate.label=Affiliate
SP.label=SP
IDP.label=IDP
Affiliate.label=Affiliate
PEP.label=XACML PEP
PDP.label=XACML PDP
AttrAuthority.label=AttrAuth
AuthnAuthority.label=AuthnAuth
AttrQuery.label=AttrQuery
remote.label=Remote
hosted.label=Hosted
.label=-
unknown.object.type.title=Invalid Entry Selection
unknown.object.type=The selected entry has an unknown type
################################################################################
#
# Work flow
#
################################################################################
page.title.configure.hosted.idp=Create a SAMLv2 Identity Provider on this Server
page.desc.configure.hosted.idp=This page allows you to configure this instance of OpenAM server as an Identity Provider (IDP). You can provide a Name for the provider, Circle of Trust (COT), its metadata of the provider and optionally Signing Certificate. A COT is a group of IDPs and Service Providers (SPs) that trust each other and in effect represents the confines within which all federation communications are performed. Metadata represents the configuration necessary to execute federation protocols (eg SAMLv2) as well as the mechanism to communicate this configuration to other entities (eg SPs) in a COT. We shall generate the metadata if you do not have one. You are required to pick a realm for this provider if there are more than one realm in the system. Otherwise, this provider will be configured under the root realm.
page.title.configure.hosted.sp=Create a SAMLv2 Service Provider on this Server
page.desc.configure.hosted.sp=This page allows you to configure this instance of OpenAM server as a Service Provider (SP). You can provide a Name for the provider; Circle of Trust (COT), its metadata and its attribute mappings. A COT is a group of Identity Providers (IDPs) and SPs that trust each other and in effect represents the confines within which all federation communications are performed. Metadata represents the configuration necessary to execute federation protocols (eg SAMLv2) as well as the mechanism to communicate this configuration to other entities (eg IDPs) in a COT. We shall generate the metadata if you do not have one. You are required to pick a realm for this provider if there are more than one realm in the system. Otherwise, this provider will be configured under the root realm.
configure.provider.label.hasMetaData=Do you have metadata for this provider?
configure.provider.help.hasMetaData=If you are starting from scratch typically you will not have a metadata. Choosing "No" will allow you to create a basic metadata. If you are familiar with metadata specifications for the federation protocol of our choice you may have created metadata XML files manually by following the specification and OpenAM product documentation, in which case you can choose "Yes" to enter the file and its location.
configure.provider.option.hasMetaData.yes=Yes
configure.provider.option.hasMetaData.no=No
configure.provider.label.realm=Realm
configure.provider.help.realm=Enter the realm this provider belongs to. A realm is a administrative domain in which this provider will be maintained. You must have write privileges in the realm you choose. Default: root realm provided at installation.
configure.provider.label.signing.key=Signing Key
configure.provider.help.signing.key=Keys available in your keystore are listed - choose one to be used as a signing key to sign assertions issued by this IDP. Digitally Signing assertions is the basis of trust between SPs and IDPs in a COT.
configure.provider.help.signing.key.test=Please note "test" is a selfsigned certificate setup at installation for testing purposes. It is recommended you obtain a certificate from a Certificate Authority for production deployments.
configure.provider.label.encryption.key=Encryption Key
configure.provider.help.encryption.key=Keys available in your keystore are listed - choose one to be used as a encryption key to encrypt assertions issued by this IDP. Digitally encrypting assertions provides higher level of security between SPs and IDPs in a COT. Please note "test" is a selfsigned certificate setup at installation for testing purposes. It is recommended you obtain a certificate from a certificate authority for production deployments.
configure.provider.section.setup=
configure.provider.section.meta=metadata
configure.provider.section.cot=Circle of Trust
configure.provider.section.attributesmapping=Attribute Mapping
configure.provider.label.metadata=URL where metadata is located
configure.provider.help.metadata=A metadata file is a XML file (following SAMLv2 specifications) that contains protocol configuration and trust information for a particular entity (SP/IDP) in a COT. You may have received a metadata file from your partner or you may have created one yourself.
configure.provider.help.metadataurl=The URL where the metadata for the remote provider is located. If the remote provider is also hosted on OpenAM, the URL would be "< protocol >://< server-name >:< port >/< OpenAM-deployment-URI >/saml2/jsp/exportmetadata.jsp". For example, if the remote OpenAM is deployed and running on http://openam.example.com:8080/opensso, the metadata URL for the remote provider will be http://openam.example.com:8080/opensso/saml2/jsp/exportmetadata.jsp
configure.provider.label.extendeddata=URL where extended data is located
configure.provider.help.extendeddata=Extension XML file containing OpenAM specific metadata for a given entity (SP or IDP) in a COT. You may have received a extended file from your partner or you may have created one yourself.
configure.provider.label.entityId=Name
configure.provider.help.entityId=Enter a string - typically a URL you own. It will be used to identify your provider to all the other IDPs and SPs in the circle of trust in accordance with SAMLv2 specifications. Default to server's protocol, host name, port number and deployment URI.
configure.provider.attributesmapping.title=Attributes Mapping
configure.provider.attributesmapping.help=<p>Mapping attributes helps to ensure that both the Service Provider (SP) and the Identity Provider (IDP) can recognize the same attributes that may have unique names. For example, the SP may have an attribute called UserName but the IDP may call it UserID. Eliminating these inconsistencies by mapping the attributes will guarantee that the data will be passed correctly.</p>
configure.provider.attributesmapping.title.empty=There are no mappings.
configure.provider.attributesmapping.default=Use default attribute mapping from Identity Provider
configure.provider.attributesmapping.add.button=Add
configure.provider.attributesmapping.delete.button=Delete
configure.provider.attributesmapping.column.name=Local Attribute Name
configure.provider.attributesmapping.column.assertion=Name in Assertion
configure.provider.missing.attribute.mapping.values=Local Attribute Name and Name in Assertion are required.
configure.provider.help.user.attributes.choices=You can either select one of these user's attribute names or enter other attribute name.
name.attribute.mapping.select=Select an attribute.
configure.provider.label.cot.question=Circles of Trust
configure.provider.option.existing=Add to existing
configure.provider.option.new=Add to new
configure.provider.label.cot.existing=Existing Circle of Trust
configure.provider.label.cot=New Circle of Trust
configure.provider.help.cot=Choose from existing circles of trust listed or provide one to be created in which to include this IDP. A COT is a group of IDPs and SPs that trust each other and provides the confines within which all SAMLv2 communications are performed.
configure.provider.help.sp.cot=Choose from existing circles of trust listed or provide one to be created in which to include this SP. A COT is a group of IDPs and SPs that trust each other and provides the confines within which all SAMLv2 communications are performed.
configure.provider.keys.none=-
configure.provider.get.cots=Retrieving Circle of trust information<p>&nbsp;</p><p>Please wait ....</p>
configure.provider.waiting=Configuring the provider.<p>&nbsp;</p><p>Please wait ....</p>
configure.provider.done=Do you want to create a remote service provider or Fedlet?<br />If you choose not to create them, you can always create them later.
configure.sp.done=Service provider is configured.<br />You can modify the provider's profile under the Federation tab.<p>&nbsp;</p>Do you want to configure a remote identity provider?
ajax.ok.button=OK
ajax.yes.button=Yes
ajax.no.button=No
ajax.neither.button=Neither
ajax.close.button=Close
ajax.upload.file.failed=Unable to upload file.
ajax.yes.fedlet.button=Fedlet
ajax.yes.sp.button=Service Provider
page.title.configure.remote.sp=Configure a SAMLv2 Remote Service Provider
page.desc.configure.remote.sp=This page allows you to register a remote Service Provider (SP). You need two things: Circle of Trust (COT) and metadata of the provider. A COT is a group of Identity Providers (IDPs) and SPs that trust each other and in effect represents the confines within which all federation communications are performed. Metadata represents the configuration necessary to execute federation protocols (eg SAMLv2) as well as the mechanism to communicate this configuration to other entities (eg IDPs) in a COT.
page.title.configure.remote.idp=Configure a SAMLv2 Remote Identity Provider
page.desc.configure.remote.idp=This page allows you to register a remote Identity Provider (IDP). You need two things: Circle of Trust (COT) and metadata of the provider. A COT is a group of IDPs and Service Providers (SPs) that trust each other and in effect represents the confines within which all federation communications are performed. Metadata represents the configuration necessary to execute federation protocols (eg SAMLv2) as well as the mechanism to communicate this configuration to other entities (eg SPs) in a COT.
configure.provider.label.meta.question=Where does the metadata file reside?
configure.provider.option.url=URL
configure.provider.option.uploadfile=File
configure.provider.label.extendeddata.question=Where does the extended data file reside?
metadata.saml2.create.title=Create SAMLv2 Entity Provider
metadata.idff.create.title=Create IDFF Entity Provider
metadata.wsfed.create.title=Create WS-Federation Entity Provider
metadata.label.entity.id=Entity Identifier
idff.create.provider.desc=A Provider needs to have at least one role. Enter one or more metaalias under the role sections such as Identity Provider, and Service Provider.
samlv2.create.provider.desc=A Provider needs to have at least one role. Enter one or more metaalias under the role sections such as Identity Provider, Service Provider, Attribute Query Provider, Attribute Authority, Authentication Authority, XACML Policy Enforcement Point and XACML Policy Decision Point.
wsfed.create.provider.desc=A Provider needs to have at least one role. Enter one or more metaalias under the role sections such as Identity Provider, and Service Provider.
samlv2.create.provider.title.general=General
samlv2.create.provider.title.idp=Identity Provider
samlv2.create.provider.title.sp=Service Provider
samlv2.create.provider.title.attr.query.provider=Attribute Query Provider
samlv2.create.provider.title.attr.authority=Attribute Authority
samlv2.create.provider.title.auth.authority=Authentication Authority
samlv2.create.provider.title.xacml.pep=XACML Policy Enforcement Point
samlv2.create.provider.title.xacml.pdp=XACML Policy Decision Point
samlv2.create.provider.title.affiliation=Hosted Affiliation
samlv2.create.provider.realm=Realm
samlv2.create.provider.entityId=Entity Identifier
samlv2.create.provider.serviceprovider=Meta Alias
samlv2.create.provider.identityprovider=Meta Alias
samlv2.create.provider.attrqueryprovider=Meta Alias
samlv2.create.provider.attrauthority=Meta Alias
samlv2.create.provider.authnauthority=Meta Alias
samlv2.create.provider.xacmlpep=Meta Alias
samlv2.create.provider.xacmlpdp=Meta Alias
samlv2.create.provider.affiliation=Meta Alias
samlv2.create.provider.affimembers=Affiliation members
samlv2.create.provider.spscertalias=Signing certificate alias
samlv2.create.provider.idpscertalias=Signing certificate alias
samlv2.create.provider.affilownerid=Owner Id
samlv2.create.provider.attrqscertalias=Signing certificate alias
samlv2.create.provider.attrascertalias=Signing certificate alias
samlv2.create.provider.authnascertalias=Signing certificate alias
samlv2.create.provider.affiscertalias=Signing certificate alias
samlv2.create.provider.xacmlpdpscertalias=Signing certificate alias
samlv2.create.provider.xacmlpepscertalias=Signing certificate alias
samlv2.create.provider.specertalias=Encryption certificate alias
samlv2.create.provider.idpecertalias=Encryption certificate alias
samlv2.create.provider.attrqecertalias=Encryption certificate alias
samlv2.create.provider.attraecertalias=Encryption certificate alias
samlv2.create.provider.authnaecertalias=Encryption certificate alias
samlv2.create.provider.affiecertalias=Encryption certificate alias
samlv2.create.provider.xacmlpdpecertalias=Encryption certificate alias
samlv2.create.provider.xacmlpepecertalias=Encryption certificate alias
samlv2.create.provider.help.affimembers=Members are mandatory for creating an affiliation entity. The possible affiliation members are the existing SP entities under the same realm.
samlv2.create.provider.missing.affiliation.owner=Affiliation Owner is required.
samlv2.create.provider.missing.realm=Realm is required.
samlv2.create.provider.missing.entityId=Entity Identifier is required.
samlv2.create.provider.missing.affiliation.members=Affiliation Members are required.
samlv2.create.provider.missing.roles=At least one role is required. Example, the provider can be an Identity or Service Provider.
federation.entity.select.protocol=Select the protocol of the provider.
federation.entity.protocol.samlv2=SAMLv2
federation.entity.protocol.idff=IDFF
federation.entity.protocol.wsfed=WS-Fed
validate.entities.realm=Realm
validate.entities.help.realm=Realm where circles of trust reside.
validate.entities.circle.of.trusts=Circles of Trust
validate.entities.circle.of.trusts.title=Circles of Trust
validate.entities.circle.of.trusts.empty=There is no circle of trust in this realm.
validate.entities.circle.of.trust.tbl.column.name=Name
validate.entities.circle.of.trust.tbl.column.hostedidp=Hosted IDP
validate.entities.circle.of.trust.tbl.column.remoteidp=Remote IDP
validate.entities.circle.of.trust.tbl.column.hostedsp=Hosted SP
validate.entities.circle.of.trust.tbl.column.remotesp=Remote SP
federation.create.provider.duplicate.metaAlias=Meta Alias values need to be unique within a realm.
page.title.validate.fed=Validate Federation Setup
validate.entities.cot=Circle of Trust
validate.cot.table.show=Show COT Table
validate.cot.table.hide=Hide COT Table
validate.entities.idp.sp=Providers
cot.table.desc.entities=Pick one idp and then one sp blah...
validate.entities.idp=Identity Provider
validate.entities.sp=Service Provider
button.backtoLogin=Back to Login
validate.cannot.validate.div=You must have both Identity Provider and Service Provider in a Circle of Trust to validate connectivity.
no.providers.to.validate=You have no federation connections to test. Please establish a federated connection by creating an identity and a service provider in the same circle of trust.
page.desc.validate=This page collects the information that is required for validating a SAMLv2 setup. Realm (defaulted to "/"), Circle of Trust, Identity Provider (IDP) and Service Provider (SP) are needed. Inorder the validate a SAMLv2 setup, you can have either a hosted IDP and a remote SP; or a remote SP and a hosted IDP.
cot.table.desc.validate=This circles of trust table shows the name of circle of trust, the number of hosted and remote identity and service providers which are members of it. Select the COT where the providers reside.
validate.logout=Please wait for a moment while we attempt to<br />terminate your session.
validate.entities.get.entities=Please wait. Getting Identity and <br />Server Providers.
validate.ready.for.test=We are ready for testing the federation connectivity.<br />You will be logout of the current session.
validate.entities.help.idp=The parenthesis in the provider name indicates its meta alias. And only hosted providers have meta alias.
validate.entities.help.sp=The parenthesis in the provider name indicates its meta alias. And only hosted providers have meta alias.
page.title.register.product=Register This OpenAM Product
page.desc.register.product=This page allows you to register your OpenAM product with the Sun Connection site. You need a Sun Online Account in order to register. You may request one at the same time, if you do not already have one. By clicking the Register button, you agree with the Sun Online Account terms of use. See http://www.sun.com/termsofuse.jsp.
register.product.account.question=Have an SOA or SDN account?
register.product.option.account=I HAVE a Sun Online Account or Sun Developer Network Account
register.product.option.no.account=I DO NOT HAVE a Sun Online Account or Sun Developer Network Account
register.product.account.info=Sun Online Account/Sun Developer Network Account Information
register.product.label.domain=Domain
register.product.label.userName=User Name
register.product.help.userName=Example: Jim123 or jim@company.com
register.product.label.pswd=Password
register.product.label.cfrmPswd=Retype Password
register.product.help.cfrmPswd=At least 6 characters, case sensitive
register.product.label.proxyHost=Proxy Host
register.product.help.proxyHost=Proxy Host of the Server Machine
register.product.label.proxyPort=Proxy Port
register.product.label.emailAddr=Email Address
register.product.help.emailAddr=If no User Name provided, your email address will be your User Name
register.product.label.firstName=First Name
register.product.label.lastName=Last Name
register.product.label.country=Country/Territory
page.desc.register.product.privacy=Sun Microsystems, Inc. respects your desire for privacy. Personal information collected from this form will not be shared with organizations external to Sun without your consent, except to process data on Sun's behalf in connection with this transaction. If you have any questions please refer to the Sun Privacy Policy or contact us at privacy@Sun.com.
page.desc.register.product.terms=By clicking the Register button, you agree with the Sun Online Account terms of use. See http://www.sun.com/termsofuse.jsp.
register.product.label.privacy.terms=Privacy and Terms Of Use
register.product.label.privacy=Sun Microsystems, Inc. respects your desire for privacy. Personal information collected from this form will not be shared with organizations external to Sun without your consent, except to process data on Sun's behalf in connection with this transaction. If you have any questions please refer to the Sun Privacy Policy at http://www.sun.com/privacy or contact us at privacy@Sun.com.
register.product.waiting=Registering the product.<p>&nbsp;</p><p>Please wait ....</p>
register.product.done=Registered the OpenAM product
register.product.get.domains=Please select one of your domains.
fedlet.created.title=Your Fedlet.zip file has been created.
creating.fedlet.waiting=Creating Fedlet configuration. Please wait...
page.title.create.fedlet=Create Fedlet Configuration
page.desc.create.fedlet=The Fedlet is ideal for an IDP that needs to enable an SP that does not have any kind of federation solution in place. A Fedlet configuration is a very small zip file that you can provide a service provider (SP) so they can instantaneously federate with you. The SP simply adds the Fedlet to their application, deploys their application and they are federation enabled.
create.fedlet.label.realm=Realm
create.fedlet.help.realm=Realm where the Fedlet resides
create.fedlet.label.cot=Circle of Trust
create.fedlet.label.idp=Identity Provider
create.fedlet.label.entity.id=Name
create.fedlet.attribute.mapping.desc=Mapping attributes helps to ensure that both the Service Provider (SP) and the Identity Provider (IDP) can recognize the same attributes that may have unique names. For example, the SP may have an attribute called UserName but the IDP may call it UserID. Eliminating these inconsistencies by mapping the attributes will guarantee that the data will be passed correctly.
create.fedlet.help.entity.id=A name for this Fedlet. Example http://www.example.com:8080/myapp
create.fedlet.label.assert.consumer=Destination URL of the Service Provider which will include the Fedlet
create.fedlet.help.assert.consumer=Example: http://www.examples.com:8080/myapp
create.fedlet.missing.cot=Unable to create Fedlet configuration because there are no circle of trust with Identity Provider.
create.fedlet.section.idp=Identity Provider Information
create.fedlet.section.setup=Fedlet information
complete.create.host.idp.title=Your Identity Provider has been configured
complete.create.host.idp.prompt=What would you like to do next?
complete.create.host.idp.reg.remote.sp.title=Register a Remote Service Provider
complete.create.host.idp.reg.remote.sp.text=In order to complete the federated relationship you would need to register the service provider. You can <a href="javascript:createRemoteSP()">register a service provider</a> now or access it later from the common tasks page.
complete.create.host.idp.create.fedlet.title=Create a Fedlet configuration
complete.create.host.idp.create.fedlet.text=The Fedlet is ideal for an IDP that needs to enable a SP that does not have a Federation solution in place. It is a small .zip file that you can provide to the SP in order for them to federate with you. You can <a href="javascript:createFedlet()">create a Fedlet</a> now or access it later from the common tasks page.
complete.create.host.idp.modify.profile.title=Modify this provider's profile
complete.create.host.idp.modify.profile.text=A minimal profile has already been created for this provider, if you would like to create a fuller profile you can <a href="javascript:modifyIDP()">modify the profile</a> now or access it later under the Federation tab.
complete.create.host.idp.create.google.apps.title=Configure Google Apps
complete.create.host.idp.create.google.apps.text=Google Apps is a service that enables you to make web applications available to users in a custom domain. Email, calendaring, and file management are examples of Google Apps you can integrate with OpenAM. Use this workflow to integrate Google Apps in a single sign-on environment. You can <a href="javascript:configureGoogleApps()">configure Google Apps</a> now or configure it later from the common tasks page.
# LICENSE
license=Copyright \u00a9 2010-2016, ForgeRock AS. All Rights Reserved. Use of this software is subject to the terms and conditions of the ForgeRock\u2122 License and Subscription Agreement.
org-chain-list.help=This table lists the authentication modules that make up this authentication chain.
org-chain-list.help.txt=The list of modules that will be presented to the user during authentication. The criteria controls the processing \
of the authentication chain. The available options are as follows<br/>\
<ul><li><code>iplanet-am-auth-shared-state-enabled</code> : true|false</li>\
<li><code>iplanet-am-auth-store-shared-state-enabled</code> : true|false</li>\
<li><code>iplanet-am-auth-shared-state-behavior-pattern</code> : tryFirstPass</li></ul><br/><br/>\
Enabling the shared state allows modules further down the chain to use the credentials captured by previous modules. \
<code>tryFirstPass</code>mode allows said modules to process these credentials before any of their own callbacks are used.
org-chain-list.help.uri=#tbd
signingCertAlias.help=The alias (name) of the key to be used to sign SAML protocol messages.
signingCertAlias.help.txt=Provide the list of signing certificate aliases that should be available in the SAML \
metadata as "signing" KeyDescriptors (e.g. for key rollover). The first signing key in the list will \
be used by this SAML entity to sign SAML protocol messages.
signingCertKeyPass.help=The password of the private key to be used to sign assertions, leave blank to use the password stored in %BASE_DIR%/%SERVER_URI%/.keypass (or the value defined in the property: com.sun.identity.saml.xmlsig.keypass)
encryptionCertAlias.help=The alias (name) of the key to be used when decrypting SAML protocol messages.
encryptionCertAlias.help.txt=Provide the list of encryption certificate aliases that should be available in the SAML \
metadata as "encryption" KeyDescriptors (e.g. for key rollover). Remote parties are likely to choose \
the first encryption KeyDescriptor when encrypting the SAML protocol messages. The hosted entity will attempt to \
decrypt the messages using the private keys associated with the configured certificate aliases in the order they are \
defined.
a100.help=List of locales recognised by OpenAM and their matching charsets
a100.help.txt=This is the list of locales recognised by OpenAM.\ Add additional locale(s)s to this list it the locale should use \
a character encoding (charset) other than the default.<br/><br/>\
<i>NB </i>If a locale is on this list, it does not necessarily mean that a localisation exists for the same locale.
a101.help=Mapping of MIME charset name to Java charset Name
a101.help.txt=Some Java charset names do not exactly match to their MIME equivilant. This list is used to map between Java and MIME \
charset names.
a133=Default Success Login URL
a133.help=Successful logins will be forwarded to this URL
a133.help.txt=This is the URL to which clients will be forwarded upon successful authentication. Enter a URL or URI relative to the \
local OpenAM. URL or URI can be prefixed with the ClientType|URL if client specific. URL without http(s) protocol will be appended to \
the current URI of OpenAM.
a134=Default Failure Login URL
a134.help=Failed logins will be forwarded to this URL
a134.help.txt=This is the URL to which clients will be forwarded upon failed authentication. Enter a URL or URI relative to the local \
OpenAM. URL or URI can be prefixed with ClientType|URL if client specific. URL without http(s) protocol will be appended to the current \
URI of OpenAM.
a135=Authentication Post Processing Classes
a135.help=A list of post authentication processing classes for all users in this realm.
a135.help.txt=This is a list of Post Processing Classes that will be called by OpenAM for all users that authenticate to this realm. \
Refer to the documentation for the places where the list of post authentication classes can be set and their precedence. \
<br/><br/>For example: org.forgerock.auth.PostProcessClass<br/>\
<i>NB </i>OpenAM must be able to find these classes on the <code>CLASSPATH</code> and must implement the interface \
<code>com.sun.identity.authentication.spi.AMPostAuthProcessInterface</code>.
a135.help.uri=#tbd
section.label.common.dynamicAttributes = Dynamic Attributes
section.label.common.realmDefaults = Realm Defaults
sections.iPlanetAMAuthService.Organization=\
userprofile \
persistentcookie \
accountlockout \
general \
security \
postauthprocess
section.label.iPlanetAMAuthService.Organization.core=Core
section.label.iPlanetAMAuthService.Organization.userprofile=User Profile
section.label.iPlanetAMAuthService.Organization.persistentcookie=Persistent Cookie
section.label.iPlanetAMAuthService.Organization.accountlockout=Account Lockout
section.label.iPlanetAMAuthService.Organization.general=General
section.label.iPlanetAMAuthService.Organization.security=Security
section.label.iPlanetAMAuthService.Organization.postauthprocess=Post Authentication Processing
sections.iPlanetAMSessionService.Global=\
general \
search \
notifications \
quotas \
stateless
section.label.iPlanetAMSessionService.Global.general=General
section.label.iPlanetAMSessionService.Global.search=Session Search
section.label.iPlanetAMSessionService.Global.notifications=Session Property Change Notifications
section.label.iPlanetAMSessionService.Global.quotas=Session Quotas
section.label.iPlanetAMSessionService.Global.stateless=Stateless Sessions
sections.sunIdentityRepositoryService.Organization=\
ldapsettings \
jdbcsettings \
pluginconfig \
userconfig \
authentication \
groupconfig \
roleconfig \
persistentsearch \
errorhandling \
cachecontrol
# LDAP plugin sections
section.label.sunIdentityRepositoryService.Organization.ldapsettings=Server Settings
section.label.sunIdentityRepositoryService.Organization.pluginconfig=Plug-in Configuration
section.label.sunIdentityRepositoryService.Organization.userconfig=User Configuration
section.label.sunIdentityRepositoryService.Organization.authentication=Authentication Configuration
section.label.sunIdentityRepositoryService.Organization.groupconfig=Group Configuration
section.label.sunIdentityRepositoryService.Organization.roleconfig=Role Configuration
section.label.sunIdentityRepositoryService.Organization.persistentsearch=Persistent Search Controls
section.label.sunIdentityRepositoryService.Organization.errorhandling=Error Handling Configuration
section.label.sunIdentityRepositoryService.Organization.cachecontrol=Cache Control
# Database plugin sections
section.label.sunIdentityRepositoryService.Organization.jdbcsettings=JDBC Settings
# Adaptive risk authentication service sections
sections.sunAMAuthAdaptiveService.Organization=\
general \
authfailed \
iprange \
iphistory \
knowncookie \
devicecookie \
lastlogin \
attributecheck \
geolocation \
requestheader
section.label.sunAMAuthAdaptiveService.Organization.general=General
section.label.sunAMAuthAdaptiveService.Organization.authfailed=Failed Authentications
section.label.sunAMAuthAdaptiveService.Organization.iprange=IP Address Range
section.label.sunAMAuthAdaptiveService.Organization.iphistory=IP Address History
section.label.sunAMAuthAdaptiveService.Organization.knowncookie=Known Cookie
section.label.sunAMAuthAdaptiveService.Organization.devicecookie=Device Cookie
section.label.sunAMAuthAdaptiveService.Organization.lastlogin=Time Since Last Login
section.label.sunAMAuthAdaptiveService.Organization.attributecheck=Profile Attribute
section.label.sunAMAuthAdaptiveService.Organization.geolocation=Geo Location
section.label.sunAMAuthAdaptiveService.Organization.requestheader=Request Header
sections.selfService.Organization=\
generalConfig \
userRegistration \
forgottenPassword \
forgottenUsername \
profileManagement \
advancedConfig
section.label.selfService.Organization.generalConfig=General Configuration
section.label.selfService.Organization.userRegistration=User Registration
section.label.selfService.Organization.forgottenPassword=Forgotten Password
section.label.selfService.Organization.forgottenUsername=Forgotten Username
section.label.selfService.Organization.profileManagement=Profile Management
section.label.selfService.Organization.advancedConfig=Advanced Configuration
sections.sunFAMFederationCommon.Global=\
generalConfig \
implementationClasses \
algorithms \
montoring
section.label.sunFAMFederationCommon.Global.generalConfig=General Configuration
section.label.sunFAMFederationCommon.Global.implementationClasses=Implementation Classes
section.label.sunFAMFederationCommon.Global.algorithms=Algorithms
section.label.sunFAMFederationCommon.Global.montoring=Monitoring
sections.iPlanetAMNamingService.Global=\
generalConfig \
federationConfig \
endpointConfig
section.label.iPlanetAMNamingService.Global.generalConfig=General Configuration
section.label.iPlanetAMNamingService.Global.federationConfig=Federation Configuration
section.label.iPlanetAMNamingService.Global.endpointConfig=Endpoint Configuration
sections.iPlanetAMPasswordResetService.Global=\
generalConfig \
otherConfig
section.label.iPlanetAMPasswordResetService.Organization.generalConfig=General Configuration
section.label.iPlanetAMPasswordResetService.Organization.otherConfig=Advanced Configuration
sections.OAuth2Provider.Global=\
coreOAuth2Config \
advancedOAuth2Config \
coreOIDCConfig \
advancedOIDCConfig \
deviceCodeConfig
section.label.OAuth2Provider.Organization.coreOAuth2Config=Core
section.label.OAuth2Provider.Organization.advancedOAuth2Config=Advanced
section.label.OAuth2Provider.Organization.coreOIDCConfig=Open ID Connect
section.label.OAuth2Provider.Organization.advancedOIDCConfig=Advanced Open ID Connect
section.label.OAuth2Provider.Organization.deviceCodeConfig=Device Flow
#Logging sections
sections.iPlanetAMLoggingService.Global=general file database syslog
section.label.iPlanetAMLoggingService.Global.general=General
section.label.iPlanetAMLoggingService.Global.file=File
section.label.iPlanetAMLoggingService.Global.database=Database
section.label.iPlanetAMLoggingService.Global.syslog=Syslog
##################################
# OAuth2 Localization Parameters #
##################################
page.title.common.tasks.section.OAuth2=Configure OAuth Provider
page.title.common.tasks.section.desc.OAuth2=This task configures OAuth2, OpenID Connect, Mobile Connect and UMA per \
realm. Each realm can act as authorization server for these services.
configure.oauth2.section.serv=Configure OAuth2/OpenID Connect Service
configure.oauth2.section.policy=Configure OAuth2 Authorization End Point Protection Policy
configure.oauth2.section.policy.help=A policy to protect the OAuth2 authorization end point will be created. This \
policy will be named OAuth2ProviderPolicy. The policy will protect the endpoint \
http://openam.server.name.com/openam/oauth2/authorize. The purpose of this policy is to redirect clients to the \
OpenAM login page to authenticate a resource owner each time they go to the authorize end point. To do advanced \
policy management can be done using the policies tab for each realm.
configure.oauth2.section.registerClient=Register OAuth2/OpenID Connect Client(s)
configure.oauth2.section.registerClient.help=The last step is to register client(s) for the OAuth2/OpenID Connect \
Provider to issue tokens to. Clients can be registered by navigating to the OpenAM agents tab and selecting \
OAuth 2.0/OpenID Connect Client. A Client can also be registered by visiting the jsp registration page at \
http://openam.server.name.com/openam/oauth2/registerClient.jsp
configure.oauth2profile.title.message=Configure {0}
configure.oauth2profile.name.oauth2=OAuth 2.0
configure.oauth2profile.name.oidc=OpenID Connect
configure.oauth2profile.name.mobileconnect=Mobile Connect
configure.oauth2profile.name.uma=UMA
configure.oauth2profile.help.oauth2=Configure OpenAM as a plain OAuth 2.0 authorization server. You will need to \
customise the scopes you require in the OAuth 2.0 Provider service settings after creation.
configure.oauth2profile.help.oidc=Configure OpenAM as an OpenID Connect authorization server. The provider service \
will be configured with settings that conform to the \
<a href="http://openid.net/specs/openid-connect-core-1_0.html">OpenID Connect specification</a>, which you can \
modify if required.
configure.oauth2profile.help.mobileconnect=Configure OpenAM as a Mobile Connect authorization server. The provider \
service will be configured with settings that conform to the \
<a href="https://developer.mobileconnect.io/docs">Mobile Connect specification</a>, which you can modify if required.
configure.oauth2profile.help.uma=Configure OpenAM as an UMA authorization server. The provider \
service will be configured with settings that conform to the \
<a href="https://docs.kantarainitiative.org/uma/draft-uma-core-v1_0_1.html">UMA specification</a>, which you can \
modify if required. The required settings to act as an OpenID Connection authorization server will also be applied.
commontask.label.configure.oauth2=Configure OAuth 2.0
commontask.configure.oauth2=You configure the OAuth 2.0 authorization service for a particular realm. \
This process also protects the authorization endpoint using a standard policy.
commontask.label.configure.oidc=Configure OpenID Connect
commontask.configure.oidc=You configure the OpenID Connect profile of the OAuth 2.0 authorization service for a \
particular realm. This process also protects the authorization endpoint using a standard policy.
commontask.label.configure.mobileconnect=Configure Mobile Connect
commontask.configure.mobileconnect=You configure the Mobile Connect profile of the OAuth 2.0 authorization service for \
a particular realm. This process also protects the authorization endpoint using a standard policy.
commontask.label.configure.uma=Configure User Managed Access
commontask.configure.uma=You configure the UMA profile of the OAuth 2.0 authorization service for \
a particular realm. This process also protects the authorization endpoint using a standard policy.
configure.oauth2.label.service.refreshLifetime=Refresh Token Lifetime (seconds)
configure.oauth2.label.service.refreshLifetime.help=The time in seconds a refresh token is valid for
configure.oauth2.label.service.codeLifetime=Authorization Code Lifetime (seconds)
configure.oauth2.label.service.codeLifetime.help=The time in seconds an authorization code is valid for
configure.oauth2.label.service.tokenLifetime=Access Token Lifetime (seconds)
configure.oauth2.label.service.tokenLifetime.help=The time in seconds an access token is valid for
configure.oauth2.label.service.refreshToken=Issue Refresh Tokens
configure.oauth2.label.service.refreshToken.help=Check to enable generation of refresh tokens
configure.oauth2.label.service.refreshTokenOnRefreshing=Issue Refresh Tokens on Refreshing Access Tokens
configure.oauth2.label.service.refreshTokenOnRefreshing.help=Check to enable generation of refresh tokens when \
refreshing access tokens
configure.oauth2.label.service.scopeImpl=Scope Implementation Class
configure.oauth2.label.service.scopeImpl.help=The class that contains the required scope implementation, must \
implement the <code>org.forgerock.oauth2.core.ScopeValidator</code> interface
oauth2.configured.title=OAuth2 Configured for the given realm
configuring.oauth2.waiting=Waiting on OAuth2 profile Configuration
##################################
# Social Authentication wizard #
##################################
social.configuration.waiting=Setting up Social Authentication.<p>&nbsp;</p><p>Please wait ....</p>
##################################
#Rest/Soap STS
##################################
#values for the tab - referenced in amConsoleConfig.xml
tab.configuration.reststs.label=STS
tab.configuration.reststs.tooltip=Click to configure rest sts instances
tab.configuration.reststs.status=Click to configure rest sts instances
#Properties for STSHomeViewBean and associated .jsp page.
sts.home.page.title={0} - STS Instances
rest.sts.home.instances.table.name=Rest STS Instances
rest.sts.home.instances.table.summary=Rest STS Instances
rest.sts.home.instances.table.empty.message=No published Rest STS instances
rest.sts.home.instances.table.button.new=Add...
rest.sts.home.instances.table.button.delete=Remove
rest.sts.home.instances.table.column.name=Name
rest.sts.home.instances.table.action.column.name=Action
rest.sts.home.instance.deleted=Rest STS instance deleted
rest.sts.home.instances.deleted=Rest STS instances deleted
soap.sts.home.instances.table.name=Soap STS Instances
soap.sts.home.instances.table.summary=Soap STS Instances
soap.sts.home.instances.table.empty.message=No published Soap STS instances
soap.sts.home.instances.table.button.new=Add...
soap.sts.home.instances.table.button.delete=Remove
soap.sts.home.instances.table.column.name=Name
soap.sts.home.instances.table.action.column.name=Action
soap.sts.home.instance.deleted=Soap STS instance deleted
soap.sts.home.instances.deleted=Soap STS instances deleted
#Properties for the RestSTSEditViewBean
rest.sts.edit.page.title=update rest sts instance
# Properties for the propertyRest/SoapSecurityTokenService.xml files
sts.persist.issued.tokens.in.cts=Persist Issued Tokens in Core Token Store
sts.persist.issued.tokens.in.cts.help=Necessary to support token validation and cancellation
sts.persist.issued.tokens.in.cts.help.txt=Validation of STS-issued tokens will involve determining whether the token \
has been issued, has not expired, and has not been cancelled. Token cancellation involves removing the record of this \
token from the CTS. Thus CTS persistence of STS-issued tokens is required to support these features.
sts.saml2.section.title=Issued SAML2 Token Configuration
sts.saml2.ServiceProviderEntityId=Service Provider Entity Id
sts.saml2.ServiceProviderEntityId.help=Values will be used to populate the Audiences of the AudienceRestriction \
element of the Conditions element. This value is required when issuing Bearer assertions. See section 4.1.4.2 of \
<a href="http://docs.oasis-open.org/security/saml/v2.0/saml-profiles-2.0-os.pdf" target="_blank">\
Profiles for the OASIS Security Assertion Markup Language (SAML) V2.0</a> for details.
sts.saml2.ServiceProviderAssertionConsumerServiceUrl=Service Provider Assertion Consumer Service Url
sts.saml2.ServiceProviderAssertionConsumerServiceUrl.help=When issuing bearer assertions, the recipient attribute \
of the SubjectConfirmation element must be set to the Service Provider Assertion Consumer Service Url. See section \
4.1.4.2 of <a href="http://docs.oasis-open.org/security/saml/v2.0/saml-profiles-2.0-os.pdf" target="_blank">\
Profiles for the OASIS Security Assertion Markup Language (SAML) V2.0</a> for details. Value required when \
issuing Bearer assertions.
sts.saml2.NameIdFormat=NameIdFormat
sts.saml2.TokenLifetime=Token Lifetime (Seconds)
sts.saml2.CustomConditionsProviderClassName=Custom Conditions Provider Class Name (optional)
sts.saml2.CustomConditionsProviderClassName.help=If the Conditions of the issued SAML2 assertion \
need to be customized, implement the <code>org.forgerock.openam.sts.tokengeneration.saml2.statements.ConditionsProvider</code> \
interface, and specify the class name of the implementation here.
sts.saml2.CustomSubjectProviderClassName=Customs Subject Provider Class Name (optional)
sts.saml2.CustomSubjectProviderClassName.help=If the Subject of the issued SAML2 assertion \
needs to be customized, implement the <code>org.forgerock.openam.sts.tokengeneration.saml2.statements.SubjectProvider</code> \
interface, and specify the class name of the implementation here.
sts.saml2.CustomAuthenticationStatementsClassName=Custom AuthenticationStatements Class Name (optional)
sts.saml2.CustomAuthenticationStatementsClassName.help=If the AuthenticationStatements of the issued SAML2 assertion \
need to be customized, implement the <code>org.forgerock.openam.sts.tokengeneration.saml2.statements.AuthenticationStatementsProvider</code> \
interface, and specify the class name of the implementation here.
sts.saml2.CustomAttributeStatementsClassName=Custom AttributeStatements Class Name (optional)
sts.saml2.CustomAttributeStatementsClassName.help=If the AttributeStatements of the issued SAML2 assertion \
need to be customized, implement the <code>org.forgerock.openam.sts.tokengeneration.saml2.statements.AttributeStatementsProvider</code> \
interface, and specify the class name of the implementation here.
sts.saml2.CustomAuthorizationDecisionStatementsClassName=Custom Authorization Decision Statements Class Name (optional)
sts.saml2.CustomAuthorizationDecisionStatementsClassName.help=If the AuthorizationDecisionStatements of the issued SAML2 assertion \
need to be customized, implement the <code>org.forgerock.openam.sts.tokengeneration.saml2.statements.AuthzDecisionStatementsProvider</code> \
interface, and specify the class name of the implementation here.
sts.saml2.CustomAttributeMapperClassName=Custom Attribute Mapper Class Name (optional)
sts.saml2.CustomAttributeMapperClassName.help=If the class implementing attribute mapping for attributes \
contained in the issued SAML2 assertion needs to be customized, implement the \
<code>org.forgerock.openam.sts.tokengeneration.saml2.statements.AttributeMapper</code> interface, and specify the class name of \
the implementation here.
sts.saml2.CustomAuthenticationContextMapperClassName=Custom Authentication Context Class Name (optional)
sts.saml2.CustomRestAuthenticationContextMapperClassName.help=If the AuthnContext mapping implemented by the \
<code>org.forgerock.openam.sts.rest.token.provider.saml.DefaultSaml2JsonTokenAuthnContextMapper</code> class needs \
to be customized, implement the <code>org.forgerock.openam.sts.rest.token.provider.saml.Saml2JsonTokenAuthnContextMapper</code> \
interface, and specify the name of the implementation here.
sts.saml2.CustomSoapAuthenticationContextMapperClassName.help=If the AuthnContext mapping implemented by the \
<code>org.forgerock.openam.sts.soap.token.provider.saml2.DefaultSaml2XmlTokenAuthnContextMapper</code> class needs \
to be customized, implement the <code>org.forgerock.openam.sts.soap.token.provider.saml2.Saml2XmlTokenAuthnContextMapper</code> \
interface, and specify the name of the implementation here.
sts.saml2.SignAssertion=Sign Assertion
sts.saml2.EncryptAssertion=Encrypt Assertion
sts.saml2.EncryptAssertion.help=Check this box if the entire assertion should be encrypted. If this box is checked, \
the Encrypt NameID and Encrypt Attributes boxes cannot be checked.
sts.saml2.EncryptAttributes=Encrypt Attributes
sts.saml2.EncryptAttributes.help=Check this box if the assertion Attributes should be encrypted. If this box is \
checked, the Encrypt Assertion box cannot be checked.
sts.saml2.EncryptNameID=Encrypt NameID
sts.saml2.EncryptNameID.help=Check this box if the assertion NameID should be encrypted. If this box is checked, \
the Encrypt Assertion box cannot be checked.
sts.saml2.EncryptionAlgorithm=Encryption Algorithm
sts.saml2.EncryptionAlgorithm.help=Algorithm used to encrypt generated assertions.
sts.saml2.keystore.filename=KeystorePath
sts.saml2.keystore.filename.help=Path to keystore
sts.saml2.keystore.filename.help.txt=Provide either the full filesystem path to a filesystem resident keystore, or a \
classpath-relative path to a keystore bundled in the OpenAM .war file. This keystore contains the IdP public/private \
keys and SP public key for signed and/or encrypted assertions. If assertions are neither signed nor encrypted, these \
values need not be specified.
sts.saml2.keystore.password=Keystore Password
sts.saml2.keystore.password.confirm=Confirm Keystore Password
sts.saml2.keystore.EncryptionKeyAlias=Encryption Key Alias
sts.saml2.keystore.EncryptionKeyAlias.help=This alias corresponds to the SP's x509 Certificate identified by the \
SP Entity ID for this rest-sts instance. Not necessary unless assertions are to be encrypted.
sts.saml2.keystore.SignatureKeyAlias=Signature Key Alias
sts.saml2.keystore.SignatureKeyAlias.help=Corresponds to the private key of the IdP. Will be used to sign assertions. \
Value can remain unspecified unless assertions are signed.
sts.saml2.keystore.SignatureKeyPassword=Signature Key Password
sts.saml2.keystore.SignatureKeyPassword.confirm= Confirm Signature Key Password
sts.saml2.AttributeMap=Attribute Mappings
sts.saml2.AttributeMap.help=Contains the mapping of assertion attribute names (Map keys) to local OpenAM attributes (Map values) in \
configured data stores. Format: assertion_attr_name=ldap_attr_name
sts.saml2.AttributeMap.help.txt= The DefaultAttributeMapper looks at profile attributes in \
configured data stores, or in Session properties. The keys will define the name of the attributes \
included in the Assertion Attribute statements, and the data pulled from the subject's directory entry or session state \
corresponding to the map value will define the value corresponding to this attribute name. The keys can have the format \
[NameFomatURI|]SAML ATTRIBUTE NAME. If the attribute value is \
enclosed in quotes, that quoted value will be included in the attribute without mapping. Binary attributes should be \
followed by ';binary'. Examples: EmailAddress=mail, Address=postaladdress, \
urn:oasis:names:tc:SAML:2.0:attrname-format:uri|urn:mace:dir:attribute-def:cn=cn, partnerID="staticPartnerIDValue", \
urn:oasis:names:tc:SAML:2.0:attrname-format:uri|nameID="staticNameIDValue", photo=photo;binary, \
urn:oasis:names:tc:SAML:2.0:attrname-format:uri|photo=photo;binary
sts.saml2.nameidformat.unspecified=urn:oasis:names:tc:SAML:1.0:nameid-format:unspecified
sts.saml2.nameidformat.entity=urn:oasis:names:tc:SAML:2.0:nameid-format:entity
sts.saml2.nameidformat.email=urn:oasis:names:tc:SAML:1.1:nameid-format:emailAddress
sts.saml2.nameidformat.encrypted=urn:oasis:names:tc:SAML:2.0:nameid-format:encrypted
sts.saml2.nameidformat.persistent=urn:oasis:names:tc:SAML:2.0:nameid-format:persistent
sts.saml2.nameidformat.transient=urn:oasis:names:tc:SAML:2.0:nameid-format:transient
sts.saml2.nameidformat.x509=urn:oasis:names:tc:SAML:1.1:nameid-format:X509SubjectName
sts.saml2.nameidformat.windowsdomain=urn:oasis:names:tc:SAML:1.1:nameid-format:WindowsDomainQualifiedName
sts.saml2.nameidformat.kerberos=urn:oasis:names:tc:SAML:2.0:nameid-format:kerberos
rest.sts.general.section.title=General Configuration
sts.saml2.issuerName=The SAML2 issuer Id
sts.saml2.issuerName.help=Will appear in the Issuer element of issued SAML2 assertions
rest.sts.tokentransforms=Supported Token Transforms
rest.sts.transform.unt.saml2.true=UNT->SAML2;invalidate interim OpenAM session
rest.sts.transform.unt.saml2.false=UNT->SAML2;don't invalidate interim OpenAM session
rest.sts.transform.oidc.saml2.true=OPENIDCONNECT->SAML2;invalidate interim OpenAM session
rest.sts.transform.oidc.saml2.false=OPENIDCONNECT->SAML2;don't invalidate interim OpenAM session
rest.sts.transform.openam.saml2.true=OPENAM->SAML2;invalidate interim OpenAM session
rest.sts.transform.openam.saml2.false=OPENAM->SAML2;don't invalidate interim OpenAM session
rest.sts.transform.x509.saml2.true=x509->SAML2;invalidate interim OpenAM session
rest.sts.transform.x509.saml2.false=x509->SAML2;don't invalidate interim OpenAM session
rest.sts.transform.unt.oidc.true=USERNAME->OPENIDCONNECT;invalidate interim OpenAM session
rest.sts.transform.unt.oidc.false=USERNAME->OPENIDCONNECT;don't invalidate interim OpenAM session
rest.sts.transform.oidc.oidc.true=OPENIDCONNECT->OPENIDCONNECT;invalidate interim OpenAM session
rest.sts.transform.oidc.oidc.false=OPENIDCONNECT->OPENIDCONNECT;don't invalidate interim OpenAM session
rest.sts.transform.openam.oidc.true=OPENAM->OPENIDCONNECT;invalidate interim OpenAM session
rest.sts.transform.openam.oidc.false=OPENAM->OPENIDCONNECT;don't invalidate interim OpenAM session
rest.sts.transform.x509.oidc.true=X509->OPENIDCONNECT;invalidate interim OpenAM session
rest.sts.transform.x509.oidc.false=X509->OPENIDCONNECT;don't invalidate interim OpenAM session
rest.sts.tokentransforms.help=Supported token transformations
rest.sts.tokentransforms.help.txt=In X->Y, X refers to the input token type, and Y refers to the output token type \
(currently limited to SAML2). The (don't) invalidate interim OpenAM session specifies whether the interim OpenAM session, \
created during the authentication of the presented input token type, should be invalidated following the creation of the \
output token type.
rest.sts.custom.token.validators=Custom Token Validators (optional)
rest.sts.custom.token.validators.help=If validator of a custom token type is desired, specify the name of the custom token \
here, followed by '|', followed by the class name of the org.forgerock.openam.sts.rest.token.validator.RestTokenTransformValidator \
implementation which will be invoked to validate the custom tokens.
rest.sts.custom.token.validators.help.txt=Example: MY_CUSTOM_INPUT_TOKEN|org.mycompany.tokens.MyCustomTokenValidator \
Note that MY_CUSTOM_INPUT_TOKEN would then be specified as the value corresponding to the token_type key in the input_token_state \
json object specified in rest-sts token transformation invocations.
rest.sts.custom.token.providers=Custom Token Providers (optional)
rest.sts.custom.token.providers.help=If a rest-sts instance is to produce a custom token, specify the name of the custom token \
here, followed by '|', followed by the class name of the org.forgerock.openam.sts.rest.token.provider.RestTokenProvider \
implementation which will be invoked to produce an instance of the custom token.
rest.sts.custom.token.providers.help.txt=Example: MY_CUSTOM_OUTPUT_TOKEN|org.mycompany.tokens.MyCustomTokenProvider \
Note that MY_CUSTOM_OUTPUT_TOKEN would then be specified as the value corresponding to the token_type key in the output_token_state \
json object specified in rest-sts token transformation invocations.
rest.sts.custom.token.transforms=Custom Token Transforms (optional)
rest.sts.custom.token.transforms.help=If either custom token validators or providers are specified, they must also be specified \
in a custom rest-sts token transformation. These input or output tokens can be specified in a transformation with standard, \
or other custom, tokens.
rest.sts.custom.token.transforms.help.txt=The format of these token transformation definitions is the same as the standard \
token transformation definitions. The first field defines the input token type, the second the output token type, and the \
third field specifies whether the OpenAM session, produced as part of the validation of the input token type, is invalidated \
following the production of the output token. Example 1: MY_CUSTOM_INPUT_TOKEN|SAML2|true \
Example 1 specifies a MY_CUSTOM_INPUT_TOKEN as the input token (requires the specification of a custom token validator) \
SAML2 as the produced token, and that the interim OpenAM Session should be invalidated after the SAML2 token is produced. \
Example 2: OPENIDCONNECT|MY_CUSTOM_OUTPUT_TOKEN|true Example 2 specifies that an OPENIDCONNECT token should be authenticated to assert \
the identity of a token of type MY_CUSTOM_OUTPUT_TOKEN (requires the specification of a custom token provider) and that the \
interim OpenAM Session should be invalidated. Example 3: MY_CUSTOM_INPUT_TOKEN|MY_CUSTOM_OUTPUT_TOKEN|false Example 3 specifies \
that a MY_CUSTOM_INPUT_TOKEN should be transformed into a MY_CUSTOM_OUTPUT_TOKEN (requires the specification of both a custom \
provider and a custom validator), and that the interim OpenAM session should not be invalidated.
rest.sts.deployment.section.title=Deployment Configuration
rest.sts.deployment.UrlElement=Deployment Url Element
rest.sts.deployment.UrlElement.help=STS endpoint Url will be composed of rest-sts/realm/urlElement
rest.sts.deployment.AuthTargetMappings=Authentication Target Mappings
rest.sts.deployment.AuthTargetMappings.help=Configuration of consumption of OpenAM's rest-authN
rest.sts.deployment.AuthTargetMappings.help.txt=Each deployed STS is configured with the authentication targets for each \
input token type for each supported token transformation. For example, if the transformation \
OPENIDCONNECT->SAML2 is supported, the STS instance must be configured with information specifying which elements of \
the OpenAM restful authentication context needs to be consumed to validate the OPENIDCONNECT token. The elements of the \
configuration tuple are separated by '|'. The first element is the input token type in the token transform: i.e. \
X509, OPENIDCONNECT, USERNAME, or OPENAM. The second element is the authentication target - i.e. either 'module' \
or 'service', and the third element is the name of the authentication module or service. The fourth (optional) element provides \
the STS authentication context information about the to-be-consumed authentication context. When transforming OpenID Connect \
Id tokens, the OpenID Connect authentication module must be consumed, and thus a deployed rest-sts instance must be configured \
with the name of the header/cookie element where the OpenID Connect \
Id token will be placed. For this example, the following string would define these configurations: \
OPENIDCONNECT|module|oidc|oidc_id_token_auth_target_header_key=oidc_id_token. In this case, 'oidc' is the name of the \
OpenID Connect authentication module created to authenticate OpenID Connect tokens. When transforming a X509 Certificate, \
the Certificate module must be consumed, and the published rest-sts instance must be configured with the name of the \
Certificate module (or the service containing the module), and the header name configured for the Certificate module \
corresponding to where the Certificate module can expect to find the to-be-validated Certificate. The following string \
would define these configurations: X509|module|cert_module|x509_token_auth_target_header_key=client_cert. In this \
case 'cert_module' is the name of the Certificate module, and client_cert is the header name where Certificate module \
has been configured to find the client's Certificate.
rest.sts.deployment.TwoWayTLSHeaderKey=Client Certificate Header Key
rest.sts.deployment.TwoWayTLSHeaderKey.help=TLS-offload host certificate header key
rest.sts.deployment.TwoWayTLSHeaderKey.help.txt=Token transformation which take X509 Certificates as the input token require that \
the X509 Certificate be presented via two-way TLS, so that the TLS handshake can validate client certificate ownership. \
A standard means of obtaining the client certificate presented via two-way TLS is via the javax.servlet.request.X509Certificate \
attribute in the ServletRequest. However, in TLS-offloaded deployments, the TLS-offloader must communicate the client \
certificate to its ultimate destination via an Http header. If this rest-sts instance is to support token transformations \
with X509 Certificate input, and OpenAM will be deployed in a TLS-offloaded context, then this value must be set to the \
header value which the TLS-offloading engine will use to set client certificates presented via the TLS handshake.
rest.sts.deployment.TLSOffloadEngineHosts=Trusted Remote Hosts
rest.sts.deployment.TLSOffloadEngineHosts.help=IP addresses of TLS-offload hosts
rest.sts.deployment.TLSOffloadEngineHosts.help.txt=Token transformation which take X509 Certificates as the input token require that \
the X509 Certificate be presented via two-way TLS, so that the TLS handshake can validate client certificate ownership. \
If OpenAM is deployed in a TLS-offloaded environment, in which the TLS-offloader must communicate the client certificate \
to the rest-sts via an Http header, this certificate will only be accepted if the ip address(es) of the TLS-offload engines \
are specified in this list. Specify 'any' if a client certificate can be presented in the specified header by any rest-sts \
client.
#message properties displayed by the model and view-beans
rest.sts.validation.output.token.configuration.message=Either the SAML2 and/or OpenID Connect token configuration state must be specified.
sts.validation.saml2.token.lifetime.message=SAML2 token lifetime must be specified
sts.validation.oidc.token.lifetime.message=OpenID Connect token lifetime must be specified
rest.sts.validation.deployment.url.message=Deyployment Url element must be specified.
rest.sts.validation.deployment.url.content.message=Deployment Url element can neither start, end, nor contain, the '/' character.
rest.sts.validation.issuername.message=Issuer name must be specified.
sts.validation.saml2.keystore.filename.message=Keystore filename must be specified if assertion signing or encryption is configured.
sts.validation.saml2.keystore.password.message=Keystore password must be specified if assertion signing or encryption is configured.
sts.validation.saml2.keystore.signature.keyalias.message=Keystore signature key alias must be specified if assertion signing is configured.
sts.validation.saml2.keystore.signature.keypassword.message=Keystore signature key password must be specified.
sts.validation.saml2.keystore.encryption.keyalias.message=Keystore encryption key alias must be specified if assertion encryption is configured.
sts.validation.saml2.keystore.encryption.keypassword.message=Keystore encryption key password must be specified.
rest.sts.validation.tokentransforms.message=A set of Supported Token Transforms must be selected.
rest.sts.validation.tokentransforms.duplicate.message=Only a single transform of a specified input token type can be selected.
sts.saml2.encryptioncombinations.message=If Encrypt Assertion is selected, then neither Encrypt NameID nor Encrypt \
Attributes can be selected. Attributes and/or NameIDs can be encrypted, but not in conjunction with assertion encryption.
rest.sts.view.no.instance.message=No state corresponding to id {0}
rest.sts.view.no.updates=Property values have not been updated!
rest.sts.view.no.edit.deployment.url=The deployment url of an existing instance cannot be edited, as it constitutes the STS' \
identifier. If the deployment url must be changed, delete the current instance, and create a new instance with the updated url.
sts.validation.oidc.signature.algorithm.message=A signature algorithm for OpenID Connect tokens must be specified.
sts.validation.oidc.client.secret.missing.message=The client secret must be specified for HMAC-signed tokens
sts.validation.oidc.keystore.location.message=The KeyStore location must be specified for RSA-signed tokens
sts.validation.oidc.keystore.password.message=The KeyStore password must be specified for RSA-signed tokens
sts.validation.oidc.keystore.signature.keyalias.message=The signature key alias must be specified for RSA-signed tokens
sts.validation.oidc.keystore.signature.keypassword.message=The signature key password must be specified for RSA-signed tokens
sts.validation.oidc.claim.map.incorrect.format.message=The OpenID Connect claim map must be of format claim-name=attribute-name
sts.validation.saml2.claim.map.incorrect.format.message=The SAML2 attribute map must be of format assertion_attr_name=ldap_attr_name
sts.validation.oidc.audience.not.specified.message=An audience for issued OpenID Connect tokens must be specified
#entries corresponding to OIDC-related entries in propertyRestSecurityTokenService.xml and propertySoapSecurityTokenService.xml
sts.oidc.section.title=OpenID Connect Token Configuration
sts.oidc.issuerName=The id of the OpenID Connect Token Provider
sts.oidc.issuerName.help=Value corresponding to iss claim
sts.oidc.token.lifetime=Token Lifetime (Seconds)
sts.oidc.signature.algorithm=Token signature algorithm
sts.oidc.signature.algorithm.hmac.sha.256=HMAC SHA 256
sts.oidc.signature.algorithm.hmac.sha.384=HMAC SHA 384
sts.oidc.signature.algorithm.hmac.sha.512=HMAC SHA 512
sts.oidc.signature.algorithm.rsa.sha.256=RSA SHA 256
sts.oidc.signature.algorithm.help=Algorithm used to sign issued OIDC tokens
sts.oidc.public.key.reference.type=Public key reference type
sts.oidc.public.key.reference.type.none=NONE
sts.oidc.public.key.reference.type.jwk=JWK
sts.oidc.public.key.reference.type.help=For tokens signed with RSA, how should corresponding public key be referenced in the issued jwt
sts.oidc.keystore.location=KeyStore Location
sts.oidc.keystore.location.help=For RSA-signed tokens, the filesystem or classpath location of the KeyStore containing signing key entry
sts.oidc.keystore.location.help.txt=For RSA-signed tokens, the KeyStore location, password, signing-key alias, and signing key \
password must be specified. The client secret is not required for RSA-signed tokens.
sts.oidc.keystore.password=KeyStore password
sts.oidc.keystore.password.confirm=Confirm KeyStore password
sts.oidc.keystore.signature.key.alias=KeyStore signing key alias
sts.oidc.keystore.signature.key.alias.help=For RSA-signed tokens, corresponds to the private key of the OIDC OP. Will be used to sign assertions.
sts.oidc.keystore.signature.key.password=Signature key password
sts.oidc.keystore.signature.key.password.confirm=Confirm signature key password
sts.oidc.client.secret=Client secret
sts.oidc.client.secret.help=For HMAC-signed tokens, the client secret used as the HMAC key
sts.oidc.client.secret.help.txt=For HMAC-signed tokens, the KeyStore location, password, signature key alias and \
password configurations are not required.
sts.oidc.client.secret.confirm=Confirm client secret
sts.oidc.audience=The audience for issued tokens
sts.oidc.audience.help=Contents will be set in the aud claim
sts.oidc.authorized.party=The authorized party (optional)
sts.oidc.authorized.party.help=Optional. Will be set in the azp claim
sts.oidc.claim.map=Claim map
sts.oidc.claim.map.help=Contains the mapping of OIDC token claim names (Map keys) to local OpenAM attributes (Map values) \
in configured data stores. Format: claim_name=attribute_name
sts.oidc.claim.map.help.txt= The keys in the map will be claim entries in the issued OIDC token, and the \
value of these claims will be the principal attribute state resulting from LDAP datastore lookup of the map values. \
If no values are returned from the LDAP datastore lookup of the attribute corresponding to the map value, \
no claim will be set in the issued OIDC token.
sts.oidc.custom.claim.mapper.class=Custom claim mapper class (optional)
sts.oidc.custom.claim.mapper.class.help=If the class implementing attribute mapping for attributes contained in \
issued OpenID Connect tokens needs to be customized, implement the \
<code>org.forgerock.openam.sts.tokengeneration.oidc.OpenIdConnectTokenClaimMapper</code> interface, and specify the class name of \
the implementation here.
sts.oidc.custom.authentication.context.mapper.class=Custom authn context mapper class (optional)
sts.oidc.custom.authentication.context.mapper.class.help=If issued OIDC tokens are to contain acr claims, implement the \
<code>org.forgerock.openam.sts.rest.token.provider.oidc.OpenIdConnectTokenAuthnContextMapper</code> interface, and specify the \
class name of the implementation here.
sts.oidc.custom.authentication.methods.references.mapper.class=Custom authn methods references mapper class (optional)
sts.oidc.custom.authentication.methods.references.mapper.class.help=If issued OIDC tokens are to contain amr claims, implement the \
<code>org.forgerock.openam.sts.rest.token.provider.oidc.OpenIdConnectTokenAuthMethodReferencesMapper</code> interface, and specify the \
class name of the implementation here.
#properties specific to the soap-sts view beans
soap.sts.keystore.section.title=Soap Keystore Configuration
soap.sts.keystore.filename=Soap Keystore Location
soap.sts.keystore.filename.help=The location of the keystore which contains the key state necessary for the CXF and WSS4j \
runtime to enforce the SecurityPolicy bindings associated with this STS instance.
soap.sts.keystore.password=Keystore Password
soap.sts.keystore.password.confirm=Confirm Keystore Password
soap.sts.keystore.signature.key.alias=Signature Key Alias
soap.sts.keystore.signature.key.alias.help=Alias of key used to sign messages from STS. Necessary for asymmetric binding.
soap.sts.keystore.signature.key.password=Signature Key Password
soap.sts.keystore.signature.key.password.confirm=Confirm Signature Key Password
#Note the incongruence between encryption/decryption. This has to do with confusion about the use of key state in the symmetric and
#asymmetric bindings. In general, encryption should be replaced by decryption in the soap-encryption-key-password and soap-encryption-key-alias
#properties defined in soapSTS.xml, and thus in the SoapSTSKeystoreConfig domain object. See the class javadocs in SoapSTSKeystoreConfig
#for details. Only the user-visible values will be changed now, in order to mitigate risk.
soap.sts.keystore.encryption.key.alias=Decryption Key Alias
soap.sts.keystore.encryption.key.alias.help=Alias of key used by the STS to decrypt client messages in the asymmetric \
binding, and to decrypt the client-generated symmetric key in the symmetric binding. Corresponds to an STS PrivateKeyEntry.
soap.sts.keystore.encryption.key.password=Decryption Key Password
soap.sts.keystore.encryption.key.password.confirm=Confirm Decryption Key Password
soap.sts.issued.token.types=Issued Tokens
soap.sts.issued.token.saml2=SAML2
soap.sts.issued.token.oidc=OpenID Connect
soap.sts.issued.token.help=Determines which tokens this soap STS instance will issue.
soap.sts.security.policy.validated.token.config=Security Policy Validated Token
soap.sts.security.policy.validated.token.config.unt.true=USERNAME;invalidate interim OpenAM session
soap.sts.security.policy.validated.token.config.unt.false=USERNAME;don't invalidate interim OpenAM session
soap.sts.security.policy.validated.token.config.openam.true=OPENAM;invalidate this session
soap.sts.security.policy.validated.token.config.openam.false=OPENAM;don't invalidate this session
soap.sts.security.policy.validated.token.config.x509.true=X509;invalidate interim OpenAM session
soap.sts.security.policy.validated.token.config.x509.false=X509;don't invalidate interim OpenAM session
soap.sts.security.policy.validated.token.config.help=Determines the SupportingToken type in the WS-SecurityPolicy bindings \
in the soap STS' wsdl, and whether the interim OpenAM session resulting from successful SupportingToken validation, should \
be invalidated following token issue.
soap.sts.deployment.section.title=Deployment
soap.sts.deployment.url.element=Deployment Url Element
soap.sts.deployment.url.element.help=STS endpoint Url will be composed of {soap_sts_war_name}/realm/urlElement
soap.sts.deployment.auth.target.mappings=Authentication Target Mappings
soap.sts.deployment.auth.target.mappings.help=Configuration of consumption of OpenAM's rest-authN
soap.sts.deployment.auth.target.mappings.help.txt=Each deployed STS is configured with the authentication targets for each \
input token type for each supported token transformation. For example, if the transformation \
OPENIDCONNECT->SAML2 is supported, the STS instance must be configured with information specifying which elements of \
the OpenAM restful authentication context needs to be consumed to validate the OPENIDCONNECT token. The elements of the \
configuration tuple are separated by '|'. The first element is the input token type in the token transform: i.e. \
X509, OPENIDCONNECT, USERNAME, or OPENAM. The second element is the authentication target - i.e. either 'module' \
or 'service', and the third element is the name of the authentication module or service. The fourth (optional) element provides \
the STS authentication context information about the to-be-consumed authentication context. When transforming OpenID Connect \
Id tokens, the OpenID Connect authentication module must be consumed, and thus a deployed rest-sts instance must be configured \
with the name of the header/cookie element where the OpenID Connect \
Id token will be placed. For this example, the following string would define these configurations: \
OPENIDCONNECT|module|oidc|oidc_id_token_auth_target_header_key=oidc_id_token. In this case, 'oidc' is the name of the \
OpenID Connect authentication module created to authenticate OpenID Connect tokens. When transforming a X509 Certificate, \
the Certificate module must be consumed, and the published rest-sts instance must be configured with the name of the \
Certificate module (or the service containing the module), and the header name configured for the Certificate module \
corresponding to where the Certificate module can expect to find the to-be-validated Certificate. The following string \
would define these configurations: X509|module|cert_module|x509_token_auth_target_header_key=client_cert. In this \
case 'cert_module' is the name of the Certificate module, and client_cert is the header name where Certificate module \
has been configured to find the client's Certificate.
soap.sts.deployment.am.url=Url of OpenAM
soap.sts.deployment.am.url.help=Set to Url of the OpenAM instance or site deployment.
soap.sts.deployment.am.url.help.txt=The OpenAM deployment will be consulted for published soap-sts instances, and to authenticate \
and issue tokens.
soap.sts.deployment.wsdl.location=Wsdl File Referencing Security Policy Binding Selection
soap.sts.deployment.wsdl.location.ut.transport=Username tokens over the transport binding
soap.sts.deployment.wsdl.location.ut.symmetric=Username tokens over the symmetric binding
soap.sts.deployment.wsdl.location.ut.asymmetric=Username tokens over the asymmetric binding
soap.sts.deployment.wsdl.location.am.bare=OpenAM session tokens in the clear
soap.sts.deployment.wsdl.location.am.transport=OpenAM session tokens over the transport binding
soap.sts.deployment.wsdl.location.x509.symmetric=x509 Certificates over the symmetric binding
soap.sts.deployment.wsdl.location.x509.asymmetric=x509 Certificates over the asymmetric binding
soap.sts.deployment.wsdl.location.custom=Custom wsdl file
soap.sts.deployment.wsdl.location.help=Choose the SupportingToken type and corresponding SecurityPolicy binding which will \
protect your sts instance. This choice will determine the SecurityPolicy bindings in the wsdl file defining the WS-Trust API
soap.sts.deployment.wsdl.location.help.txt=Note that the SupportingToken type selected must correspond to the Security Policy \
Validated Token selection. Note if a custom wsdl file is chose, the user is responsible for providing a \
properly formatted wsdl file. See documentation for details.
soap.sts.deployment.custom.wsdl.location=Custom wsdl File (optional)
soap.sts.deployment.custom.wsdl.location.help=The location (on soap-sts .war accessible filesystem or soap-sts .war classpath) of the custom wsdl file.
soap.sts.deployment.custom.wsdl.location.help.txt=If the signing and/or encryption of the request and/or response messages \
specified in the SecurityPolicy bindings of standard soap-sts wdsl files must be customized, specify the name of the \
customized wsdl file here. See documentation for additional details.
soap.sts.deployment.custom.service.name=Custom Service QName (optional)
soap.sts.deployment.custom.service.name.help=The name attribute of the wsdl:Service element referenced in the Custom wsdl File, in QName format.
soap.sts.deployment.custom.service.name.help.txt=Example: {http://docs.oasis-open.org/ws-sx/ws-trust/200512/}service_name
soap.sts.deployment.custom.port.name=Custom Port QName (optional)
soap.sts.deployment.custom.port.name.help=The name attribute of the wsdl:Port element referenced in the Custom wsdl File, in QName format.
soap.sts.deployment.custom.port.name.help.txt=Example: {http://docs.oasis-open.org/ws-sx/ws-trust/200512/}service_port_name
soap.sts.delegation.relationship.supported=Delegation Relationships Supported
soap.sts.delegation.relationship.supported.help=Check if the RST will include ActAs/OnBehalfOf token elements
soap.sts.delegation.relationship.supported.help.txt=If SAML2 assertions with SenderVouches SubjectConfirmation \
are to be issued, this box must be checked.
soap.sts.delegation.validated.token.config=Delegated Token Types (optional)
soap.sts.delegation.validated.token.config.unt.true=USERNAME;invalidate interim OpenAM session
soap.sts.delegation.validated.token.config.unt.false=USERNAME;don't invalidate interim OpenAM session
soap.sts.delegation.validated.token.config.openam.true=OPENAM;invalidate this session
soap.sts.delegation.validated.token.config.openam.false=OPENAM;don't invalidate this session
soap.sts.delegation.validated.token.config.help=If delegation relationships are supported, out-of-the-box validation support \
for the validation of username and OpenAM session tokens included as the ActAs/OnBehalfOf element is configured here.
soap.sts.delegation.validated.token.config.help.txt=If a value is selected in this list, then no Custom Delegation Handlers \
must be specified. The true/false value indicates whether the interim OpenAM session, \
created as part of delegated token validation, should be invalidated following token creation.
soap.sts.delgation.custom.token.handlers=Custom Delegation Handlers (optional)
soap.sts.delgation.custom.token.handlers.help=If delegation relationships are supported, the class names soap-sts .war \
file classpath resident implementations of the org.apache.cxf.sts.token.delegation.TokenDelegationHandler interface \
can be specified here.
soap.sts.delgation.custom.token.handlers.help.txt=Custom TokenDelegationHandler implementations will be invoked to validate \
the potentially custom token element included in the ActAs/OnBehalfOf \
element in the RequestSecurityToken invocation. Note that a TokenDelegationHandler does not need to be supplied to \
validate username or OpenAM session tokens. The validation of these tokens are supported out-of-the-box by selecting them \
in the Delegated Token Types list.
soap.sts.validation.security.policy.validated.token.config.missing.message=A value from the Security Policy Validated Token \
list must be selected.
soap.sts.validation.custom.wsdl.specification.inconsistent.message=If a custom wsdl file location is specified, then the Custom wsdl file \
entry must be selected from the Wsdl File Referencing Security Policy Binding Selection list.
soap.sts.validation.custom.wsdl.specification.incomplete.message=If a custom wsdl file location is specified, then the custom \
service name and custom service port must also be specified.
soap.sts.validation.security.policy.validated.token.config.wrong.cardinality.message=When no custom wsdl file location is \
specified, only a single entry in the Security Policy Validated Token list can be selected.
soap.sts.validation.no.wsdl.specified.message=Either a custom wsdl file must be specified, or a entry in the Wsdl File Referencing Security \
Policy Binding Selection list must be selected.
soap.sts.validation.no.congruence.between.wsdl.and.supporting.token.message=The entry selected from the Wsdl File Referencing Security Policy Binding \
Selection list, and the element selected from Security Policy Validated Token must both reference the same token type.
soap.sts.validation.no.custom.port.or.service.specified.message=If a custom wsdl location is specified, so too must the custom \
service name and port.
soap.sts.validation.no.am.deployment.url.message=The url of the OpenAM deployment must be specified.
soap.sts.validation.no.delegation.hanlders.specified.message=If the Delegation Relationships Supported check-box is selected \
then either Custom Delegation Handler(s) must be specified or Delegated Token Types must be selected.
soap.sts.validation.custom.service.or.port.not.qname.message=Both the custom service name and port must be in QName format: {namespace}local_name
# Common Scripting messages
label.select.script=--- Select a script ---