mirror of
https://github.com/github/codeql.git
synced 2026-03-11 01:56:47 +01:00
26 lines
899 B
Plaintext
26 lines
899 B
Plaintext
/** Provides definitions related to the Netty framework. */
|
|
overlay[local?]
|
|
module;
|
|
|
|
import java
|
|
|
|
/** The interface `Cookie` in the packages `io.netty.handler.codec.http` and `io.netty.handler.codec.http.cookie`. */
|
|
class NettyCookie extends Interface {
|
|
NettyCookie() { this.hasQualifiedName("io.netty.handler.codec.http" + [".cookie", ""], "Cookie") }
|
|
}
|
|
|
|
/** The class `DefaultCookie` in the packages `io.netty.handler.codec.http` and `io.netty.handler.codec.http.cookie`. */
|
|
class NettyDefaultCookie extends Class {
|
|
NettyDefaultCookie() {
|
|
this.hasQualifiedName("io.netty.handler.codec.http" + [".cookie", ""], "DefaultCookie")
|
|
}
|
|
}
|
|
|
|
/** The method `setValue` of the interface `Cookie` or a class implementing it. */
|
|
class NettySetCookieValueMethod extends Method {
|
|
NettySetCookieValueMethod() {
|
|
this.getDeclaringType*() instanceof NettyCookie and
|
|
this.hasName("setValue")
|
|
}
|
|
}
|