mirror of
https://github.com/github/codeql.git
synced 2026-02-20 17:03:41 +01:00
16 lines
560 B
Plaintext
16 lines
560 B
Plaintext
/**
|
|
* @name Extract MaD neutral model rows.
|
|
* @description This extracts the Models as data neutral model rows.
|
|
* @id java/utils/modelconverter/generate-data-extensions-neutral
|
|
*/
|
|
|
|
import java
|
|
import semmle.code.java.dataflow.ExternalFlow
|
|
|
|
from string package, string type, string name, string signature, string kind, string provenance
|
|
where
|
|
neutralModel(package, type, name, signature, kind, provenance) and
|
|
not provenance.matches("%generated")
|
|
select package, type, name, signature, kind, provenance order by
|
|
package, type, name, signature, kind
|