We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bfcc06d commit fd2cd60Copy full SHA for fd2cd60
java/ql/src/semmle/code/java/frameworks/spring/SpringHttp.qll
@@ -0,0 +1,28 @@
1
+import java
2
+
3
+class SpringHttpEntity extends Class {
4
+ SpringHttpEntity() {
5
+ getSourceDeclaration()
6
+ .getErasure()
7
+ .(RefType)
8
+ .hasQualifiedName("org.springframework.http", "HttpEntity")
9
+ }
10
+}
11
12
+class SpringRequestEntity extends Class {
13
+ SpringRequestEntity() {
14
15
16
17
+ .hasQualifiedName("org.springframework.http", "RequestEntity")
18
19
20
21
+class SpringResponseEntity extends Class {
22
+ SpringResponseEntity() {
23
24
25
26
+ .hasQualifiedName("org.springframework.http", "ResponseEntity")
27
28
0 commit comments