forked from adfemg/sonarqube-ojaudit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrulehelp.txt
4105 lines (4104 loc) · 202 KB
/
rulehelp.txt
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
----
Profile: None
Properties: unsealed
----
Rule: Verify that the component has a short description. (oracle.adf.dvt.acc-compreqshortdesc)
Category: ADF Data Visualization Accessibility Rules (oracle.adf.dvt.dvt-accessibility)
Properties: disabled, error
Extension: oracle.dvt.dt (extension.xml:190)
----
Rule: Verify that the component has a 'summary'. (oracle.adf.dvt.acc-compreqsummary)
Category: ADF Data Visualization Accessibility Rules (oracle.adf.dvt.dvt-accessibility)
Properties: disabled, error
Extension: oracle.dvt.dt (extension.xml:195)
----
Rule: The 'dataSelection' property is not supported in Screen Reader mode. (oracle.adf.dvt.acc-graph-dataSelection-noadasupport)
Category: ADF Data Visualization Accessibility Rules (oracle.adf.dvt.dvt-accessibility)
Properties: disabled, warning
Extension: oracle.dvt.dt (extension.xml:281)
----
Rule: The 'drillingEnabled' property is not supported in Screen Reader mode. (oracle.adf.dvt.acc-graph-drillingEnabled-noadasupport)
Category: ADF Data Visualization Accessibility Rules (oracle.adf.dvt.dvt-accessibility)
Properties: disabled, warning
Extension: oracle.dvt.dt (extension.xml:271)
----
Rule: The 'bodyContextMenu' facet is not supported in Screen Reader mode. (oracle.adf.dvt.acc-graph-facets-bodyContextMenu-noadasupport)
Category: ADF Data Visualization Accessibility Rules (oracle.adf.dvt.dvt-accessibility)
Properties: disabled, warning
Extension: oracle.dvt.dt (extension.xml:256)
----
Rule: The 'contextMenu' facet is not supported in Screen Reader mode. (oracle.adf.dvt.acc-graph-facets-contextMenu-noadasupport)
Category: ADF Data Visualization Accessibility Rules (oracle.adf.dvt.dvt-accessibility)
Properties: disabled, warning
Extension: oracle.dvt.dt (extension.xml:251)
----
Rule: The 'multiSelectContextMenu' facet is not supported in Screen Reader mode. (oracle.adf.dvt.acc-graph-facets-multiSelectContextMenu-noadasupport)
Category: ADF Data Visualization Accessibility Rules (oracle.adf.dvt.dvt-accessibility)
Properties: disabled, warning
Extension: oracle.dvt.dt (extension.xml:261)
----
Rule: The 'hideAndShowBehavior' property is not supported in Screen Reader mode. (oracle.adf.dvt.acc-graph-hideAndShowBehavior-noadasupport)
Category: ADF Data Visualization Accessibility Rules (oracle.adf.dvt.dvt-accessibility)
Properties: disabled, warning
Extension: oracle.dvt.dt (extension.xml:286)
----
Rule: The 'interactiveSliceBehavior' attribute is not supported in Screen Reader mode. (oracle.adf.dvt.acc-graph-pie-interactive-slice-noadasupport)
Category: ADF Data Visualization Accessibility Rules (oracle.adf.dvt.dvt-accessibility)
Properties: disabled, warning
Extension: oracle.dvt.dt (extension.xml:236)
----
Rule: The 'markerColorAttribute' attribute is not supported in Screen Reader mode. (oracle.adf.dvt.acc-graph-scatter-markerColorAttribute-noadasupport)
Category: ADF Data Visualization Accessibility Rules (oracle.adf.dvt.dvt-accessibility)
Properties: disabled, warning
Extension: oracle.dvt.dt (extension.xml:246)
----
Rule: The 'markerShapeAttribute' attribute is not supported in Screen Reader mode. (oracle.adf.dvt.acc-graph-scatter-markerShapeAttribute-noadasupport)
Category: ADF Data Visualization Accessibility Rules (oracle.adf.dvt.dvt-accessibility)
Properties: disabled, warning
Extension: oracle.dvt.dt (extension.xml:241)
----
Rule: The 'af:showPopupBehavior' as a child of 'dvt:seriesSet' tag is not supported in Screen Reader mode. (oracle.adf.dvt.acc-graph-seriesSet-showPopupBehavior-noadasupport)
Category: ADF Data Visualization Accessibility Rules (oracle.adf.dvt.dvt-accessibility)
Properties: disabled, warning
Extension: oracle.dvt.dt (extension.xml:266)
----
Rule: The 'shapeAttributes' tag is not supported in Screen Reader mode. (oracle.adf.dvt.acc-graph-shapeAttributes-noadasupport)
Category: ADF Data Visualization Accessibility Rules (oracle.adf.dvt.dvt-accessibility)
Properties: disabled, warning
Extension: oracle.dvt.dt (extension.xml:276)
----
Rule: The value RO_DISPLAY_AUTOMATIC is not supported in Screen Reader mode. (oracle.adf.dvt.acc-graphreferencelinenoadasupport)
Category: ADF Data Visualization Accessibility Rules (oracle.adf.dvt.dvt-accessibility)
Properties: disabled, warning
Extension: oracle.dvt.dt (extension.xml:215)
----
Rule: Axis scrollbar functionality is limited in Screen Reader mode. (oracle.adf.dvt.acc-graphscrollbarnoadasupport)
Category: ADF Data Visualization Accessibility Rules (oracle.adf.dvt.dvt-accessibility)
Properties: disabled, warning
Extension: oracle.dvt.dt (extension.xml:210)
----
Rule: Series highlighting and fading rollover behaviors are not supported in Screen Reader mode. (oracle.adf.dvt.acc-graphseriesrollovernoadasupport)
Category: ADF Data Visualization Accessibility Rules (oracle.adf.dvt.dvt-accessibility)
Properties: disabled, warning
Extension: oracle.dvt.dt (extension.xml:220)
----
Rule: Graph type LINE_SELECT_POINT is not supported in Screen Reader mode. (oracle.adf.dvt.acc-graphtypenoadasupport)
Category: ADF Data Visualization Accessibility Rules (oracle.adf.dvt.dvt-accessibility)
Properties: disabled, warning
Extension: oracle.dvt.dt (extension.xml:200)
----
Rule: Marquee zoom is not supported in Screen Reader mode. (oracle.adf.dvt.acc-graphzoomdirectionnoadasupport)
Category: ADF Data Visualization Accessibility Rules (oracle.adf.dvt.dvt-accessibility)
Properties: disabled, warning
Extension: oracle.dvt.dt (extension.xml:205)
----
Rule: Check for deprecated attribute. (oracle.adf.dvt.gauge-otherProperties-deprecated-attribute)
Category: ADF Data Visualizations (oracle.adf.dvt)
Properties: disabled, warning
Extension: oracle.dvt.dt (extension.xml:101)
----
Rule: Check for deprecated advancedPropertiesXML attribute. (oracle.adf.dvt.graph-advancedpropertiesxml-deprecated-attribute)
Category: ADF Data Visualizations (oracle.adf.dvt)
Properties: disabled, warning
Extension: oracle.dvt.dt (extension.xml:86)
----
Rule: Check for deprecated dvt:graph tag (oracle.adf.dvt.graph-deprecated-tag)
Category: ADF Data Visualizations (oracle.adf.dvt)
Properties: disabled, warning
Extension: oracle.dvt.dt (extension.xml:40)
----
Rule: Check for deprecated imageFormat="AUTO" (oracle.adf.dvt.graph-imageFormat-deprecated-value)
Category: ADF Data Visualizations (oracle.adf.dvt)
Properties: disabled, warning
Extension: oracle.dvt.dt (extension.xml:70)
----
Rule: Check for invalid attribute value (oracle.adf.dvt.graph-invalid-attr-value)
Category: ADF Data Visualizations (oracle.adf.dvt)
Properties: disabled, error
Extension: oracle.dvt.dt (extension.xml:35)
----
Rule: Invalid parent element (oracle.adf.dvt.graph-invalid-child-tag)
Category: ADF Data Visualizations (oracle.adf.dvt)
Properties: disabled, error
Extension: oracle.dvt.dt (extension.xml:62)
----
Rule: Check for attribute type. (oracle.adf.dvt.graph-not-an-EL-type-attribute)
Category: ADF Data Visualizations (oracle.adf.dvt)
Properties: disabled, warning
Extension: oracle.dvt.dt (extension.xml:96)
----
Rule: Check for deprecated dvt:numberFormat tag (oracle.adf.dvt.graph-numberFormat-deprecated-invalid-tag)
Category: ADF Data Visualizations (oracle.adf.dvt)
Properties: disabled, warning
Extension: oracle.dvt.dt (extension.xml:56)
----
Rule: Check for deprecated dvt:numberFormat tag (oracle.adf.dvt.graph-numberFormat-deprecated-tag)
Category: ADF Data Visualizations (oracle.adf.dvt)
Properties: disabled, warning
Extension: oracle.dvt.dt (extension.xml:50)
----
Rule: Check for deprecated tag. (oracle.adf.dvt.graph-simplegraph-deprecated-tag)
Category: ADF Data Visualizations (oracle.adf.dvt)
Properties: disabled, warning
Extension: oracle.dvt.dt (extension.xml:91)
----
Rule: Check for deprecated style attribute. (oracle.adf.dvt.graph-style-deprecated-attribute)
Category: ADF Data Visualizations (oracle.adf.dvt)
Properties: disabled, warning
Extension: oracle.dvt.dt (extension.xml:76)
----
Rule: Check for deprecated stylePath attribute. (oracle.adf.dvt.graph-stylePath-deprecated-attribute)
Category: ADF Data Visualizations (oracle.adf.dvt)
Properties: disabled, warning
Extension: oracle.dvt.dt (extension.xml:81)
----
Rule: Check for required hierarchyViewer ancestor component (oracle.adf.dvt.hv-compmustbeinsidehv)
Category: ADF Data Visualizations (oracle.adf.dvt)
Properties: disabled, warning
Extension: oracle.dvt.dt (extension.xml:138)
----
Rule: Check for invalid children of hierarchyViewer component (oracle.adf.dvt.hv-compnotvalidhvchild)
Category: ADF Data Visualizations (oracle.adf.dvt)
Properties: disabled, error
Extension: oracle.dvt.dt (extension.xml:120)
----
Rule: Check for invalid children of searchResults component (oracle.adf.dvt.hv-compnotvalidsearchresultschild)
Category: ADF Data Visualizations (oracle.adf.dvt)
Properties: disabled, error
Extension: oracle.dvt.dt (extension.xml:126)
----
Rule: Check for trucateAt property of <af:outputText> hierarchyViewer child. (oracle.adf.dvt.hv-invalidTruncateAtInsideOutputText)
Category: ADF Data Visualizations (oracle.adf.dvt)
Properties: disabled, advisory
Extension: oracle.dvt.dt (extension.xml:144)
----
Rule: Check for invalid attribute when component is inside of a hierarchyViewer component (oracle.adf.dvt.hv-notvalidhvattr)
Category: ADF Data Visualizations (oracle.adf.dvt)
Properties: disabled, warning
Extension: oracle.dvt.dt (extension.xml:132)
----
Rule: Invalid opacity value (oracle.adf.dvt.map-rule-opacity)
Category: ADF Data Visualizations (oracle.adf.dvt)
Properties: disabled, warning
Extension: oracle.dvt.dt (extension.xml:110)
----
Rule: Check for invalid attribute value (oracle.adf.dvt.tmap-invalid-attr-value)
Category: ADF Data Visualizations (oracle.adf.dvt)
Properties: disabled, warning
Extension: oracle.dvt.dt (extension.xml:152)
----
Rule: Check for unspecified color (oracle.adf.dvt.treemap-color-undefined)
Category: ADF Data Visualizations (oracle.adf.dvt)
Properties: disabled, warning
Extension: oracle.dvt.dt (extension.xml:160)
----
Rule: Check for 'visible' attributes (oracle.adf.dvt.visibletorendered)
Category: ADF Data Visualizations (oracle.adf.dvt)
Properties: disabled, warning
Extension: oracle.dvt.dt (extension.xml:174)
----
Rule: Check for actionDelivery attr and action listener in commandToolbarButton. (oracle.adf.faces.actionInCmdToolbarBtn)
Category: Component Rules (oracle.adf.faces.component)
Properties: disabled, warning
Extension: oracle.adf-faces-dt (extension.xml:300)
----
Rule: Conflict with ADF Function or object name (oracle.adf.faces.adfjs-function-or-name-conflict)
Category: ADF Java Script Rules (oracle.adf.faces.adfjsrules)
Properties: disabled, error
Extension: oracle.adf-faces-dt (extension.xml:770)
----
Rule: Check for ADF Faces attribute (oracle.adf.faces.afattrtofattr)
Category: JSF 1.2 Migration (oracle.adf.faces.jsf12migration)
Properties: disabled, error
Extension: oracle.adf-faces-dt (extension.xml:680)
----
Rule: Check for long ids on naming containers. (oracle.adf.faces.aflongidsonnc)
Category: Component Rules (oracle.adf.faces.component)
Properties: disabled, warning
Extension: oracle.adf-faces-dt (extension.xml:280)
----
Rule: Check for ADF Faces validator (oracle.adf.faces.afvalidatortofvalidator)
Category: JSF 1.2 Migration (oracle.adf.faces.jsf12migration)
Properties: disabled, error
Extension: oracle.adf-faces-dt (extension.xml:688)
----
Rule: Check for binding scope. (oracle.adf.faces.bindingWithoutRequestOrBackingBeanScope)
Category: Component Rules (oracle.adf.faces.component)
Properties: disabled, warning
Extension: oracle.adf-faces-dt (extension.xml:353)
----
Rule: Check for existence of custom facet name in toolboxLayout attribute. (oracle.adf.faces.calendarCustomFacetName)
Category: Component Rules (oracle.adf.faces.component)
Properties: disabled, warning
Extension: oracle.adf-faces-dt (extension.xml:318)
----
Rule: Check for facet name conflict with toolboxLayout enumeration. (oracle.adf.faces.calendarFacetNameConflict)
Category: Component Rules (oracle.adf.faces.component)
Properties: disabled, warning
Extension: oracle.adf-faces-dt (extension.xml:313)
----
Rule: Verify that the chooseColor is used in conjunction with an inputColor component. (oracle.adf.faces.choosecolornotreferred)
Category: Accessibility (oracle.adf.faces.accessibility)
Properties: disabled, warning
Extension: oracle.adf-faces-dt (extension.xml:383)
----
Rule: Verify that the chooseDate is used in conjunction with an inputDate component. (oracle.adf.faces.choosedatenotreferred)
Category: Accessibility (oracle.adf.faces.accessibility)
Properties: disabled, warning
Extension: oracle.adf-faces-dt (extension.xml:393)
----
Rule: Verify that the 'chooseId' attribute of an inputColor points to a chooseColor. (oracle.adf.faces.chooseidcolorpointsnowhere)
Category: Accessibility (oracle.adf.faces.accessibility)
Properties: disabled, warning
Extension: oracle.adf-faces-dt (extension.xml:378)
----
Rule: Verify that the 'chooseId' attribute of an inputDate points to a chooseDate. (oracle.adf.faces.chooseiddatepointsnowhere)
Category: Accessibility (oracle.adf.faces.accessibility)
Properties: disabled, warning
Extension: oracle.adf-faces-dt (extension.xml:388)
----
Rule: Check for actionListener attribute and showPopupBehavior in a node (oracle.adf.faces.commandbtnusage)
Category: Component Rules (oracle.adf.faces.component)
Properties: disabled, warning
Extension: oracle.adf-faces-dt (extension.xml:275)
----
Rule: Check for Customization ID (oracle.adf.faces.compid-customization-id-found)
Category: Component ID Rules (oracle.adf.faces.id)
Properties: disabled, error
Extension: oracle.adf-faces-dt (extension.xml:593)
----
Rule: Check for Test ID (oracle.adf.faces.compid-test-id-found)
Category: Component ID Rules (oracle.adf.faces.id)
Properties: disabled, error
Extension: oracle.adf-faces-dt (extension.xml:606)
----
Rule: Verify that the component is labeled. (oracle.adf.faces.compnotlabelled)
Category: Accessibility (oracle.adf.faces.accessibility)
Properties: disabled, warning
Extension: oracle.adf-faces-dt (extension.xml:368)
----
Rule: Verify that the component has a leading header. (oracle.adf.faces.compreqleadingheader)
Category: Accessibility (oracle.adf.faces.accessibility)
Properties: disabled, warning
Extension: oracle.adf-faces-dt (extension.xml:428)
----
Rule: Verify that the component has header text. (oracle.adf.faces.compreqnoncolheadertext)
Category: Accessibility (oracle.adf.faces.accessibility)
Properties: disabled, warning
Extension: oracle.adf-faces-dt (extension.xml:423)
----
Rule: Verify that the component has a short description. (oracle.adf.faces.compreqshortdesc)
Category: Accessibility (oracle.adf.faces.accessibility)
Properties: disabled, warning
Extension: oracle.adf-faces-dt (extension.xml:418)
----
Rule: Verify that tables/trees has summaries. (oracle.adf.faces.compreqsummary)
Category: Accessibility (oracle.adf.faces.accessibility)
Properties: disabled, warning
Extension: oracle.adf-faces-dt (extension.xml:438)
----
Rule: Verify that the component has text. (oracle.adf.faces.compreqtext)
Category: Accessibility (oracle.adf.faces.accessibility)
Properties: disabled, warning
Extension: oracle.adf-faces-dt (extension.xml:398)
----
Rule: Verify that the component has text or shortDesc. (oracle.adf.faces.compreqtextorshortdesc)
Category: Accessibility (oracle.adf.faces.accessibility)
Properties: disabled, warning
Extension: oracle.adf-faces-dt (extension.xml:403)
----
Rule: Verify that the component has a title. (oracle.adf.faces.compreqtitle)
Category: Accessibility (oracle.adf.faces.accessibility)
Properties: disabled, warning
Extension: oracle.adf-faces-dt (extension.xml:408)
----
Rule: Verify that the component has a trailing header. (oracle.adf.faces.compreqtrailingheader)
Category: Accessibility (oracle.adf.faces.accessibility)
Properties: disabled, warning
Extension: oracle.adf-faces-dt (extension.xml:433)
----
Rule: Check usages of declarative components using the JSF implicit variable "component". (oracle.adf.faces.dc-uses-jsf12-component-var)
Category: Templating (oracle.adf.faces.templating)
Properties: disabled, error
Extension: oracle.adf-faces-dt (extension.xml:737)
----
Rule: Check for deprecated scoped id's on ADF components (oracle.adf.faces.deprecatedscopedid)
Category: Component ID Rules (oracle.adf.faces.id)
Properties: disabled, warning
Extension: oracle.adf-faces-dt (extension.xml:641)
----
Rule: Check for Duplicate IDs When ADF Faces is Present (oracle.adf.faces.duplicate-id-found)
Category: Component ID Rules (oracle.adf.faces.id)
Properties: disabled, error
Extension: oracle.adf-faces-dt (extension.xml:619)
----
Rule: Check for percentage heights used in inline styles. (oracle.adf.faces.endswithpercentagestyles)
Category: Style Rules (oracle.adf.faces.styles)
Properties: disabled, warning
Extension: oracle.adf-faces-dt (extension.xml:505)
----
Rule: Check for duplicate facetName (oracle.adf.faces.facetrefusage1)
Category: Component Rules (oracle.adf.faces.component)
Properties: disabled, error
Extension: oracle.adf-faces-dt (extension.xml:259)
----
Rule: Check for facetRef usage (oracle.adf.faces.facetrefusage2)
Category: Component Rules (oracle.adf.faces.component)
Properties: disabled, error
Extension: oracle.adf-faces-dt (extension.xml:267)
----
Rule: Check for 'width' or 'height' specified for facet children in panelSplitter and panelStretchLayout. (oracle.adf.faces.facetwidthheightstyles)
Category: Style Rules (oracle.adf.faces.styles)
Properties: disabled, warning
Extension: oracle.adf-faces-dt (extension.xml:530)
----
Rule: Verify that the 'for' attribute points to a component. (oracle.adf.faces.forpointsnowhere)
Category: Accessibility (oracle.adf.faces.accessibility)
Properties: disabled, warning
Extension: oracle.adf-faces-dt (extension.xml:373)
----
Rule: Check for 'height', 'top' and 'bottom' all specified in an inline style. (oracle.adf.faces.heighttopbottomstyles)
Category: Style Rules (oracle.adf.faces.styles)
Properties: disabled, warning
Extension: oracle.adf-faces-dt (extension.xml:515)
----
Rule: Verify that images have a description. (oracle.adf.faces.imgshortdesc)
Category: Accessibility (oracle.adf.faces.accessibility)
Properties: disabled, warning
Extension: oracle.adf-faces-dt (extension.xml:413)
----
Rule: Check for valid scoped id's on ADF components (oracle.adf.faces.invalidscopedid)
Category: Component ID Rules (oracle.adf.faces.id)
Properties: disabled, error
Extension: oracle.adf-faces-dt (extension.xml:636)
----
Rule: Check for usage of jsp:scriptlet. (oracle.adf.faces.jspScriptletUsage)
Category: Component Rules (oracle.adf.faces.component)
Properties: disabled, warning
Extension: oracle.adf-faces-dt (extension.xml:323)
----
Rule: Check for usage of navigationPane itemRemoval attribute. (oracle.adf.faces.navigationPaneRemovalRule)
Category: Component Rules (oracle.adf.faces.component)
Properties: disabled, warning
Extension: oracle.adf-faces-dt (extension.xml:333)
----
Rule: Check for ID When ADF Faces is Present (oracle.adf.faces.no-id-found)
Category: Component ID Rules (oracle.adf.faces.id)
Properties: disabled, warning
Extension: oracle.adf-faces-dt (extension.xml:627)
----
Rule: Check to see that the attribute points to an ADF Faces component (oracle.adf.faces.notscopedadffacescomponent)
Category: Component ID Rules (oracle.adf.faces.id)
Properties: disabled, error
Extension: oracle.adf-faces-dt (extension.xml:649)
----
Rule: Check for one form per page. (oracle.adf.faces.onlyOneFormAllowedPerPage)
Category: Component Rules (oracle.adf.faces.component)
Properties: disabled, warning
Extension: oracle.adf-faces-dt (extension.xml:343)
----
Rule: Check for usage the outputText escape attribute. (oracle.adf.faces.outputTextEscapeSecurityRule)
Category: Component Rules (oracle.adf.faces.component)
Properties: disabled, warning
Extension: oracle.adf-faces-dt (extension.xml:338)
----
Rule: Check for outputText id usage in ppr target of f:ajax. (oracle.adf.faces.outputTextReferredAsPPRTargetInAjaxTag)
Category: Component Rules (oracle.adf.faces.component)
Properties: disabled, warning
Extension: oracle.adf-faces-dt (extension.xml:358)
----
Rule: Check for usage of panelTabbed tabRemoval attribute. (oracle.adf.faces.panelTabbedRemovalRule)
Category: Component Rules (oracle.adf.faces.component)
Properties: disabled, warning
Extension: oracle.adf-faces-dt (extension.xml:328)
----
Rule: Check for 'height' percentages in inline style for ADF Faces components. (oracle.adf.faces.percentageheightrule)
Category: Style Rules (oracle.adf.faces.styles)
Properties: disabled, error
Extension: oracle.adf-faces-dt (extension.xml:536)
----
Rule: Check for 'width' percentages greater than 95% in inline style for ADF Faces components. (oracle.adf.faces.percentagewidthrule)
Category: Style Rules (oracle.adf.faces.styles)
Properties: disabled, error
Extension: oracle.adf-faces-dt (extension.xml:541)
----
Rule: null (oracle.adf.faces.persist-changes-with-session-manager-enabled)
Category: ADF Config Rules (oracle.adf.faces.adfconfig)
Properties: disabled, warning
Extension: oracle.adf-faces-dt (extension.xml:561)
----
Rule: Check for percentage heights used in the panelGroupLayout component. (oracle.adf.faces.pglendswithpercentagestyles)
Category: Style Rules (oracle.adf.faces.styles)
Properties: disabled, warning
Extension: oracle.adf-faces-dt (extension.xml:510)
----
Rule: Check for actionDelivery attr and popup facet in commandToolbarButton. (oracle.adf.faces.popupInCmdToolbarBtn)
Category: Component Rules (oracle.adf.faces.component)
Properties: disabled, warning
Extension: oracle.adf-faces-dt (extension.xml:295)
----
Rule: Check for 'position' specified in an inline style. (oracle.adf.faces.positionstyles)
Category: Style Rules (oracle.adf.faces.styles)
Properties: disabled, warning
Extension: oracle.adf-faces-dt (extension.xml:525)
----
Rule: Private methods should not be accessed outside of the class (oracle.adf.faces.private-adfjs-method-access)
Category: ADF Java Script Rules (oracle.adf.faces.adfjsrules)
Properties: disabled, error
Extension: oracle.adf-faces-dt (extension.xml:775)
----
Rule: Illegal access to ADF private JS function (oracle.adf.faces.private-adfjsfunction-usage)
Category: ADF Java Script Rules (oracle.adf.faces.adfjsrules)
Properties: disabled, error
Extension: oracle.adf-faces-dt (extension.xml:765)
----
Rule: Protected methods should not be accessed outside of the class (oracle.adf.faces.protected-adfjs-method-access)
Category: ADF Java Script Rules (oracle.adf.faces.adfjsrules)
Properties: disabled, error
Extension: oracle.adf-faces-dt (extension.xml:780)
----
Rule: The attribute is required and has a default value, the default value will be ignored. (oracle.adf.faces.pt-attr-required-default)
Category: Templating (oracle.adf.faces.templating)
Properties: disabled, warning
Extension: oracle.adf-faces-dt (extension.xml:732)
----
Rule: This component requires a display name without spaces. (oracle.adf.faces.pt-display-spaces)
Category: Templating (oracle.adf.faces.templating)
Properties: disabled, error
Extension: oracle.adf-faces-dt (extension.xml:717)
----
Rule: The facet does not have a corresponding Facet Definition (facetRef). (oracle.adf.faces.pt-facet)
Category: Templating (oracle.adf.faces.templating)
Properties: disabled, warning
Extension: oracle.adf-faces-dt (extension.xml:722)
----
Rule: The facetRef does not have a corresponding facet defined. (oracle.adf.faces.pt-facet-references)
Category: Templating (oracle.adf.faces.templating)
Properties: disabled, warning
Extension: oracle.adf-faces-dt (extension.xml:727)
----
Rule: This JSF page template requires a model binding. (oracle.adf.faces.pt-missing-model)
Category: Templating (oracle.adf.faces.templating)
Properties: disabled, error
Extension: oracle.adf-faces-dt (extension.xml:747)
----
Rule: Check for pageTemplateDef/componentDef containing more than one root component. (oracle.adf.faces.pt-multiple-root)
Category: Templating (oracle.adf.faces.templating)
Properties: disabled, warning
Extension: oracle.adf-faces-dt (extension.xml:704)
----
Rule: Page and Page template both contain an ADF Faces form, which is not allowed. (oracle.adf.faces.pt-nested-forms)
Category: Templating (oracle.adf.faces.templating)
Properties: disabled, error
Extension: oracle.adf-faces-dt (extension.xml:742)
----
Rule: JSF page template not found. (oracle.adf.faces.pt-type-not-found)
Category: Templating (oracle.adf.faces.templating)
Properties: disabled, error
Extension: oracle.adf-faces-dt (extension.xml:712)
----
Rule: Check for url usage for taskflow that shares datacontrol frames. (oracle.adf.faces.region.shared-datacontrol)
Category: Regions (oracle.adf.faces.region)
Properties: disabled, error
Extension: oracle.adf-faces-region-dt (extension.xml:47)
----
Rule: Check for fragment containing more than one root component. (oracle.adf.faces.region.single-root-in-fragment)
Category: Regions (oracle.adf.faces.region)
Properties: disabled, warning
Extension: oracle.adf-faces-region-dt (extension.xml:60)
----
Rule: Check for single immediate sub-popup component on af:popup. (oracle.adf.faces.singleImmediateChildSubPopupCompAllowed)
Category: Component Rules (oracle.adf.faces.component)
Properties: disabled, warning
Extension: oracle.adf-faces-dt (extension.xml:348)
----
Rule: Check for content property in icon selector (oracle.adf.faces.skins.icon-content-rule)
Category: Component Selector Rules (oracle.adf.faces.skins.component-selector)
Properties: disabled, warning
Extension: oracle.adf-faces-skin-dt (extension.xml:120)
----
Rule: Remove space between element name and left bracket (oracle.adf.faces.skins.space-after-element-rule)
Category: Component Selector Rules (oracle.adf.faces.skins.component-selector)
Properties: disabled, warning
Extension: oracle.adf-faces-skin-dt (extension.xml:126)
----
Rule: Check for Style Classes That Should Not Be Used (oracle.adf.faces.style-bad-selecter)
Category: Style Rules (oracle.adf.faces.styles)
Properties: disabled, warning
Extension: oracle.adf-faces-dt (extension.xml:489)
----
Rule: Check for Automatic Heights on PanelStretchLayout (oracle.adf.faces.style-no-auto-heights)
Category: Style Rules (oracle.adf.faces.styles)
Properties: disabled, warning
Extension: oracle.adf-faces-dt (extension.xml:494)
----
Rule: Check for Automatic Widths on PanelStretchLayout (oracle.adf.faces.style-no-auto-widths)
Category: Style Rules (oracle.adf.faces.styles)
Properties: disabled, warning
Extension: oracle.adf-faces-dt (extension.xml:499)
----
Rule: null (oracle.adf.faces.style-visual-root-present)
Category: Style Rules (oracle.adf.faces.styles)
Properties: disabled, warning
Extension: oracle.adf-faces-dt (extension.xml:484)
----
Rule: Verify that table columns have headers. (oracle.adf.faces.tablecolneedsheaders)
Category: Accessibility (oracle.adf.faces.accessibility)
Properties: disabled, warning
Extension: oracle.adf-faces-dt (extension.xml:443)
----
Rule: Verify that tables have at least one row header column. (oracle.adf.faces.tableneedsrowheader)
Category: Accessibility (oracle.adf.faces.accessibility)
Properties: disabled, warning
Extension: oracle.adf-faces-dt (extension.xml:450)
----
Rule: Verifies that the table row header has a proper component. (oracle.adf.faces.tablerowheader-badcomponent)
Category: Accessibility (oracle.adf.faces.accessibility)
Properties: disabled, warning
Extension: oracle.adf-faces-dt (extension.xml:465)
----
Rule: Verifies that the table row header does not have an input. (oracle.adf.faces.tablerowheader-badinputcomponent)
Category: Accessibility (oracle.adf.faces.accessibility)
Properties: disabled, warning
Extension: oracle.adf-faces-dt (extension.xml:470)
----
Rule: Verifies that the table row header's footer is valid. (oracle.adf.faces.tablerowheader-footerneedscontent)
Category: Accessibility (oracle.adf.faces.accessibility)
Properties: disabled, warning
Extension: oracle.adf-faces-dt (extension.xml:475)
----
Rule: Verifies that the table row header has a value for it's link. (oracle.adf.faces.tablerowheader-linkmissingvalue)
Category: Accessibility (oracle.adf.faces.accessibility)
Properties: disabled, warning
Extension: oracle.adf-faces-dt (extension.xml:460)
----
Rule: Verifies that the table row header has a value for it's output. (oracle.adf.faces.tablerowheader-outputmissingvalue)
Category: Accessibility (oracle.adf.faces.accessibility)
Properties: disabled, warning
Extension: oracle.adf-faces-dt (extension.xml:455)
----
Rule: Check to see that the attribute points to an ADF Faces component that sends a client component (oracle.adf.faces.targetdoesnotsendclientcomponent)
Category: Component ID Rules (oracle.adf.faces.id)
Properties: disabled, error
Extension: oracle.adf-faces-dt (extension.xml:654)
----
Rule: Check to see that exportId on the ADF exportCollectionActionListener component points to an ADF Faces table, tree, or treeTable component (oracle.adf.faces.targetnotcollectioncomponent)
Category: Component ID Rules (oracle.adf.faces.id)
Properties: disabled, error
Extension: oracle.adf-faces-dt (extension.xml:667)
----
Rule: Check to see that popupId on the ADF showPopupBehavior component points to an ADF Faces popup component (oracle.adf.faces.targetnotpopup)
Category: Component ID Rules (oracle.adf.faces.id)
Properties: disabled, error
Extension: oracle.adf-faces-dt (extension.xml:662)
----
Rule: Check for usesUpload attr when a form contains inputFile. (oracle.adf.faces.usesuploadwithinputfile)
Category: Component Rules (oracle.adf.faces.component)
Properties: disabled, warning
Extension: oracle.adf-faces-dt (extension.xml:305)
----
Rule: Check for var variable in child nodes (oracle.adf.faces.varusage)
Category: Component Rules (oracle.adf.faces.component)
Properties: disabled, warning
Extension: oracle.adf-faces-dt (extension.xml:254)
----
Rule: Check for usage of HTML/Trinidad script tag. (oracle.adf.faces.verbatimScript)
Category: Component Rules (oracle.adf.faces.component)
Properties: disabled, error
Extension: oracle.adf-faces-dt (extension.xml:285)
----
Rule: Check for usage of f:verbatim tag. (oracle.adf.faces.verbatimUsage)
Category: Component Rules (oracle.adf.faces.component)
Properties: disabled, warning
Extension: oracle.adf-faces-dt (extension.xml:290)
----
Rule: null (oracle.adf.faces.webxml-partial-state-saving)
Category: Web XML Rules (oracle.adf.faces.webxml)
Properties: disabled, warning
Extension: oracle.adf-faces-dt (extension.xml:551)
----
Rule: Check for 'width', 'left' and 'right' all specified in an inline style. (oracle.adf.faces.widthleftrightstyles)
Category: Style Rules (oracle.adf.faces.styles)
Properties: disabled, warning
Extension: oracle.adf-faces-dt (extension.xml:520)
----
Rule: Illegal internal package import. Please use public API. (oracle.adf.java.adfjavaaudit-internal-package-import)
Category: ADF Java Audit Rules (oracle.adf.java)
Properties: disabled, error
Extension: oracle.adf.common.audit (extension.xml:37)
----
Rule: Binding is using Placeholder data Control (oracle.adf.model.bound-to-placeholder)
Category: ADFm PlaceHolder Page Definition Analyzer (oracle.adf.model.placeholder)
Properties: disabled, incomplete
Extension: oracle.adfm (extension.xml:354)
----
Rule: Shared AM used as a data control config option. (oracle.adf.model.check-am-configuration)
Category: ADFm Application Analyzer (oracle.adf.model.application)
Properties: disabled, warning
Extension: oracle.adfm (extension.xml:267)
----
Rule: Checks if Binds attribute has 'Root' in it. (oracle.adf.model.check-iterator-binds-for-root)
Category: ADFm Page Definition Analyzer (oracle.adf.model.pagedefinition)
Properties: disabled, warning
Extension: oracle.adfm (extension.xml:316)
----
Rule: Checks iterator binding's 'Rangesize' attribute value to make sure it's appropriate for a table or tree binding. (oracle.adf.model.check-iterator-for-tree-or-table)
Category: ADFm Page Definition Analyzer (oracle.adf.model.pagedefinition)
Properties: disabled, error
Extension: oracle.adfm (extension.xml:293)
----
Rule: Checks if InstanceName attribute has 'Root' in it. (oracle.adf.model.check-methodaction-instancename-for-root)
Category: ADFm Page Definition Analyzer (oracle.adf.model.pagedefinition)
Properties: disabled, warning
Extension: oracle.adfm (extension.xml:304)
----
Rule: Check Data Control references (oracle.adf.model.check-page-definition-datacontrols)
Category: ADFm Application Analyzer (oracle.adf.model.application)
Properties: disabled, error
Extension: oracle.adfm (extension.xml:278)
----
Rule: Page Definition path incorrect. (oracle.adf.model.check-page-definition-extension)
Category: ADFm Application Analyzer (oracle.adf.model.application)
Properties: disabled, error
Extension: oracle.adfm (extension.xml:273)
----
Rule: Duplicate CPX file name in classpath. (oracle.adf.model.check-page-duplicate-cpxnames)
Category: ADFm Application Analyzer (oracle.adf.model.application)
Properties: disabled, error
Extension: oracle.adfm (extension.xml:336)
----
Rule: null (oracle.adf.model.check-page-duplicate-dcxnames)
Category: ADFm Configuration Analyzer (oracle.adf.model.configuration)
Properties: disabled, error
Extension: oracle.adfm (extension.xml:345)
----
Rule: Checks iterator binding 'Refresh' attribute value for Faces application (oracle.adf.model.check-page-iterator-faces-refresh-condition)
Category: ADFm Page Definition Analyzer (oracle.adf.model.pagedefinition)
Properties: disabled, error
Extension: oracle.adfm (extension.xml:287)
----
Rule: Checks if SkipValidation attribute is set to 'skipDataControls'. (oracle.adf.model.check-skipvalidation)
Category: ADFm Page Definition Analyzer (oracle.adf.model.pagedefinition)
Properties: disabled, warning
Extension: oracle.adfm (extension.xml:328)
----
Rule: Structure definition primary key check. (oracle.adf.model.structure-definition-primary-key-check)
Category: ADFm Structure Definition Analyzer (oracle.adf.model.structure-definition)
Properties: disabled, warning
Extension: oracle.adfm (extension.xml:362)
----
Rule: Non-Core Java Collections API (oracle.adf.old-collections-api)
Category: Collections API Migration (oracle.adf.collections-api)
Properties: disabled, warning
Extension: oracle.BC4J (extension.xml:844)
----
Rule: Should not have both ServletADFFilter and ADFBindingFilter in the same web.xml (oracle.adf.share.webapp-redundant-filters)
Category: Deployment Descriptors (oracle.adf.share.deployment-descriptors)
Properties: disabled, warning
Extension: oracle.adf.share.dt (extension.xml:148)
----
Rule: Bad Page Fragment Semantics in Binding (oracle.adfdt.controller.adfc.bindings.audit.BadPageFragmentSemanticsInBinding)
Category: ADF Page Flow Bindings (oracle.adf.pageflow.bindings)
Properties: disabled, error
Extension: oracle.adf.pageflow.bindings.dt (extension.xml:35)
----
Rule: Input Parameter Not Serializable (oracle.adfdt.controller.adfc.bindings.audit.InputParameterNotSerializable)
Category: ADF Page Flow Bindings (oracle.adf.pageflow.bindings)
Properties: disabled, warning
Extension: oracle.adf.pageflow.bindings.dt (extension.xml:54)
----
Rule: Required Parameter(s) Not Specified (oracle.adfdt.controller.adfc.bindings.audit.RequiredParametersNotSpecified)
Category: ADF Page Flow Bindings (oracle.adf.pageflow.bindings)
Properties: disabled, error
Extension: oracle.adf.pageflow.bindings.dt (extension.xml:26)
----
Rule: Task flow binding factory not registered (oracle.adfdt.controller.adfc.bindings.audit.TaskFlowBindingFactoryNotRegistered)
Category: ADF Page Flow Bindings (oracle.adf.pageflow.bindings)
Properties: disabled, warning
Extension: oracle.adf.pageflow.bindings.dt (extension.xml:64)
----
Rule: Unreferenced Task Flow Binding (oracle.adfdt.controller.adfc.bindings.audit.UnreferencedTaskFlowBinding)
Category: ADF Page Flow Bindings (oracle.adf.pageflow.bindings)
Properties: disabled, warning
Extension: oracle.adf.pageflow.bindings.dt (extension.xml:44)
----
Rule: High Availability for ADF Scopes is not Enabled (oracle.adfdt.controller.adfc.config.source.audit.AdfScopeHaSupportNotSet)
Category: Configuration (oracle.adf.controller.config)
Properties: disabled, warning
Extension: oracle.adf.controller.config.dt (extension.xml:23)
----
Rule: Additional Bounded Task Flow (oracle.adfdt.controller.adfc.source.audit.AdditionalBoundedTaskFlow)
Category: ADF Page Flow (oracle.adf.pageflow)
Properties: disabled, warning
Extension: oracle.adf.pageflow.dt (extension.xml:108)
----
Rule: Additional Unbounded Task Flow Artifact (oracle.adfdt.controller.adfc.source.audit.AdditionalUnboundedTaskFlowArtifact)
Category: ADF Page Flow (oracle.adf.pageflow)
Properties: disabled, warning
Extension: oracle.adf.pageflow.dt (extension.xml:117)
----
Rule: Bad Page Fragment Semantics in Dialog (oracle.adfdt.controller.adfc.source.audit.BadPageFragmentSemanticsInDialog)
Category: ADF Page Flow (oracle.adf.pageflow)
Properties: disabled, error
Extension: oracle.adf.pageflow.dt (extension.xml:127)
----
Rule: Customization ID Not Defined (oracle.adfdt.controller.adfc.source.audit.CustomizationIdNotDefined)
Category: ADF Page Flow (oracle.adf.pageflow)
Properties: disabled, warning
Extension: oracle.adf.pageflow.dt (extension.xml:136)
----
Rule: No Default Activity is Defined (oracle.adfdt.controller.adfc.source.audit.DefaultActivityNotDefined)
Category: ADF Page Flow (oracle.adf.pageflow)
Properties: disabled, error
Extension: oracle.adf.pageflow.dt (extension.xml:151)
----
Rule: Duplicate Id (oracle.adfdt.controller.adfc.source.audit.DuplicateId)
Category: ADF Page Flow (oracle.adf.pageflow)
Properties: disabled, error
Extension: oracle.adf.pageflow.dt (extension.xml:292)
----
Rule: Duplicate Region (oracle.adfdt.controller.adfc.source.audit.DuplicateRegion)
Category: ADF Page Flow (oracle.adf.pageflow)
Properties: disabled, error
Extension: oracle.adf.pageflow.dt (extension.xml:160)
----
Rule: EL Bean is Modified (oracle.adfdt.controller.adfc.source.audit.ELBeanModificationWithoutDirty)
Category: ADF Page Flow (oracle.adf.pageflow)
Properties: disabled, warning
Extension: oracle.adf.pageflow.dt (extension.xml:169)
----
Rule: EL Expression Not Expected (oracle.adfdt.controller.adfc.source.audit.ELExpressionNotExpected)
Category: ADF Page Flow (oracle.adf.pageflow)
Properties: disabled, warning
Extension: oracle.adf.pageflow.dt (extension.xml:178)
----
Rule: EL Syntax Error (oracle.adfdt.controller.adfc.source.audit.ELSyntaxError)
Category: ADF Page Flow (oracle.adf.pageflow)
Properties: disabled, error
Extension: oracle.adf.pageflow.dt (extension.xml:187)
----
Rule: EL Unknown Token (oracle.adfdt.controller.adfc.source.audit.ELUnknownToken)
Category: ADF Page Flow (oracle.adf.pageflow)
Properties: disabled, error
Extension: oracle.adf.pageflow.dt (extension.xml:199)
----
Rule: Managed Bean Class Not Serializable (oracle.adfdt.controller.adfc.source.audit.ManagedBeanNotSerializable)
Category: ADF Page Flow (oracle.adf.pageflow)
Properties: disabled, warning
Extension: oracle.adf.pageflow.dt (extension.xml:211)
----
Rule: Outcome Not Found in Activity (oracle.adfdt.controller.adfc.source.audit.OutcomeNotFoundInActivity)
Category: ADF Page Flow (oracle.adf.pageflow)
Properties: disabled, warning
Extension: oracle.adf.pageflow.dt (extension.xml:220)
----
Rule: Page Does Not Exist (oracle.adfdt.controller.adfc.source.audit.PageDoesNotExist)
Category: ADF Page Flow (oracle.adf.pageflow)
Properties: disabled, error
Extension: oracle.adf.pageflow.dt (extension.xml:229)
----
Rule: Page Fragment Reference Not Expected (oracle.adfdt.controller.adfc.source.audit.PageFragmentReferenceNotExpected)
Category: ADF Page Flow (oracle.adf.pageflow)
Properties: disabled, error
Extension: oracle.adf.pageflow.dt (extension.xml:238)
----
Rule: Page Fragment Semantics Do Not Match (1) (oracle.adfdt.controller.adfc.source.audit.PageFragmentSemanticsDoNotMatch1)
Category: ADF Page Flow (oracle.adf.pageflow)
Properties: disabled, error
Extension: oracle.adf.pageflow.dt (extension.xml:247)
----
Rule: Page Fragment Semantics Do Not Match (2) (oracle.adfdt.controller.adfc.source.audit.PageFragmentSemanticsDoNotMatch2)
Category: ADF Page Flow (oracle.adf.pageflow)
Properties: disabled, error
Extension: oracle.adf.pageflow.dt (extension.xml:256)
----
Rule: Page Fragment Semantics Do Not Match (2b) (oracle.adfdt.controller.adfc.source.audit.PageFragmentSemanticsDoNotMatch2b)
Category: ADF Page Flow (oracle.adf.pageflow)
Properties: disabled, error
Extension: oracle.adf.pageflow.dt (extension.xml:265)
----
Rule: Page Fragment Semantics Do Not Match (3) (oracle.adfdt.controller.adfc.source.audit.PageFragmentSemanticsDoNotMatch3)
Category: ADF Page Flow (oracle.adf.pageflow)
Properties: disabled, error
Extension: oracle.adf.pageflow.dt (extension.xml:274)
----
Rule: Page Fragment Semantics Do Not Match (4) (oracle.adfdt.controller.adfc.source.audit.PageFragmentSemanticsDoNotMatch4)
Category: ADF Page Flow (oracle.adf.pageflow)
Properties: disabled, error
Extension: oracle.adf.pageflow.dt (extension.xml:283)
----
Rule: Page Reference Not Expected (oracle.adfdt.controller.adfc.source.audit.PageReferenceNotExpected)
Category: ADF Page Flow (oracle.adf.pageflow)
Properties: disabled, error
Extension: oracle.adf.pageflow.dt (extension.xml:304)
----
Rule: View technologies are inconsistent within the task flow (oracle.adfdt.controller.adfc.source.audit.PageTypesNotHomogeneous)
Category: ADF Page Flow (oracle.adf.pageflow)
Properties: disabled, warning
Extension: oracle.adf.pageflow.dt (extension.xml:313)
----
Rule: Referenced ''bindings'' in a managed property (oracle.adfdt.controller.adfc.source.audit.ReferenceBindingsInManagedProperty)
Category: ADF Page Flow (oracle.adf.pageflow)
Properties: disabled, error
Extension: oracle.adf.pageflow.dt (extension.xml:367)
----
Rule: Required Element Empty (oracle.adfdt.controller.adfc.source.audit.RequiredElementEmpty)
Category: ADF Page Flow (oracle.adf.pageflow)
Properties: disabled, error
Extension: oracle.adf.pageflow.dt (extension.xml:322)
----
Rule: Required Parameter(s) Not Specified (oracle.adfdt.controller.adfc.source.audit.RequiredParametersNotSpecified)
Category: ADF Page Flow (oracle.adf.pageflow)
Properties: disabled, error
Extension: oracle.adf.pageflow.dt (extension.xml:376)
----
Rule: Bean in Scope Map is Modified (oracle.adfdt.controller.adfc.source.audit.ScopeModifiedWithoutDirty)
Category: ADF Page Flow (oracle.adf.pageflow)
Properties: disabled, warning
Extension: oracle.adf.pageflow.dt (extension.xml:331)
----
Rule: Task flow call refers to a task flow with a different view technology (oracle.adfdt.controller.adfc.source.audit.TaskFlowCallPageTypesNotHomogeneous)
Category: ADF Page Flow (oracle.adf.pageflow)
Properties: disabled, warning
Extension: oracle.adf.pageflow.dt (extension.xml:349)
----
Rule: No Task Flow Return Activities are Defined (oracle.adfdt.controller.adfc.source.audit.TaskFlowReturnActivitiesNotDefined)
Category: ADF Page Flow (oracle.adf.pageflow)
Properties: disabled, error
Extension: oracle.adf.pageflow.dt (extension.xml:340)
----
Rule: Train is not Defined (oracle.adfdt.controller.adfc.source.audit.TrainNotDefined)
Category: ADF Page Flow (oracle.adf.pageflow)
Properties: disabled, error
Extension: oracle.adf.pageflow.dt (extension.xml:358)
----
Rule: No Data Control Scope is Defined (oracle.adfdt.controller.adfc.source.audit.extra.DataControlScopeNotDefined)
Category: ADF Page Flow (oracle.adf.pageflow)
Properties: disabled, warning
Extension: oracle.adf.pageflow.dt.extras (extension.xml:38)
----
Rule: ADFPhaseListener is deprecated. (oracle.adfdt.controller.web.audit.RemoveADFPhaseListenerFromFacesConfig)
Category: ADF Page Flow (oracle.adf.pageflow)
Properties: disabled, error
Extension: oracle.adf.pageflow.web.dt (extension.xml:121)
----
Rule: Always use adfc-config.xml when possible (oracle.adfdt.controller.web.audit.UseADFCConfigWhenPossible)
Category: ADF Page Flow (oracle.adf.pageflow)
Properties: disabled, warning
Extension: oracle.adf.pageflow.web.dt (extension.xml:113)
----
Rule: Class used for both Managed Bean and Data Control (oracle.adfm.ide.mbean-class-as-dc)
Category: ADFm Best Practice Rules (oracle.adfm.ide.adf-best-practice)
Properties: disabled, warning
Extension: oracle.adfm.faces-dt (extension.xml:20)
----
Rule: Undesired bindings EL in Java Bean Source (oracle.adfm.ide.undesired-bindings-el)
Category: ADFm Best Practice Rules (oracle.adfm.ide.adf-best-practice)
Properties: disabled, warning
Extension: oracle.adfm.faces-dt (extension.xml:16)
----
Rule: Metrics Disabled (oracle.ide.audit.disabled-metrics)
Category: Audit (oracle.ide.audit.internal)
Properties: disabled, error
Extension: oracle.ide.audit (extension.xml:109)
----
Rule: Rules Disabled (oracle.ide.audit.disabled-rules)
Category: Audit (oracle.ide.audit.internal)
Properties: disabled, error
Extension: oracle.ide.audit (extension.xml:104)
----
Rule: Suppression Schemes Disabled (oracle.ide.audit.disabled-suppression-schemes)
Category: Audit (oracle.ide.audit.internal)
Properties: disabled, error
Extension: oracle.ide.audit (extension.xml:114)
----
Rule: Traversal Exception (oracle.ide.audit.traversal-exception)
Category: Audit (oracle.ide.audit.internal)
Properties: disabled, error
Extension: oracle.ide.audit (extension.xml:94)
----
Rule: Unauditable File (oracle.ide.audit.unauditable-file)
Category: Audit (oracle.ide.audit.internal)
Properties: disabled, warning
Extension: oracle.ide.audit (extension.xml:144)
----
Rule: Visitor Exception (oracle.ide.audit.visitor-exception)
Category: Audit (oracle.ide.audit.internal)
Properties: disabled, error
Extension: oracle.ide.audit (extension.xml:99)
----
Rule: PL/SQL Name Conflict (oracle.ide.database.plsql-name-conflict)
Category: Offline Database (oracle.ide.database)
Properties: disabled, error
Extension: oracle.ide.db.audit (extension.xml:62)
----
Rule: PL/SQL Type Conflict (oracle.ide.database.plsql-type-conflict)
Category: Offline Database (oracle.ide.database)
Properties: disabled, error
Extension: oracle.ide.db.audit (extension.xml:50)
----
Rule: Primary Key Missing (oracle.ide.database.primary-key-missing)
Category: Offline Database (oracle.ide.database)
Properties: disabled, advisory
Extension: oracle.ide.db.audit (extension.xml:42)
----
Rule: Unresolved Reference (oracle.ide.database.unresolved-refs)
Category: Offline Database (oracle.ide.database)
Properties: disabled, error
Extension: oracle.ide.db.audit (extension.xml:77)
----
Rule: Validation Error (oracle.ide.database.validation-error)
Category: Offline Database (oracle.ide.database)
Properties: disabled, error
Extension: oracle.ide.db.audit (extension.xml:33)
----
Rule: href or target attribute is required (oracle.ide.html.base)
Category: Validation Issues (oracle.ide.html.validation)
Properties: disabled, warning
Extension: oracle.j2ee.webapp.html (extension.xml:151)
----
Rule: Obsolete tag: '{name}' (oracle.ide.html.deprecated)
Category: Validation Issues (oracle.ide.html.validation)
Properties: disabled, error
Extension: oracle.j2ee.webapp.html (extension.xml:141)
----
Rule: Non-standard tag: <embed> (oracle.ide.html.embed)
Category: Validation Issues (oracle.ide.html.validation)
Properties: disabled, warning
Extension: oracle.j2ee.webapp.html (extension.xml:136)
----
Rule: height and width should be greater than or equal to zero. (oracle.ide.html.height-width)
Category: Validation Issues (oracle.ide.html.validation)
Properties: disabled, error
Extension: oracle.j2ee.webapp.html (extension.xml:161)
----
Rule: "name" and "id" are different (oracle.ide.html.map)
Category: Validation Issues (oracle.ide.html.validation)
Properties: disabled, warning
Extension: oracle.j2ee.webapp.html (extension.xml:146)
----
Rule: Non Default Size (oracle.ide.html.non-default-size)
Category: Validation Issues (oracle.ide.html.validation)
Properties: disabled, advisory
Extension: oracle.j2ee.webapp.html (extension.xml:132)
----
Rule: value of span should be greater than zero. (oracle.ide.html.span)
Category: Validation Issues (oracle.ide.html.validation)
Properties: disabled, error
Extension: oracle.j2ee.webapp.html (extension.xml:166)
----
Rule: rows and cols should be greater than zero. (oracle.ide.html.textarea)
Category: Validation Issues (oracle.ide.html.validation)
Properties: disabled, error
Extension: oracle.j2ee.webapp.html (extension.xml:156)
----
Rule: Deprecated property (oracle.ide.javascript.deprecated-property)
Category: JavaScript (oracle.ide.javascript)
Properties: disabled, warning
Extension: oracle.ide.javascript (extension.xml:224)
----
Rule: Duplicate case label (oracle.ide.javascript.duplicate-switch-case-label)