Validated Class — netty Architecture
Architecture documentation for the Validated class in QuicPathEvent.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD e88e7377_c489_eb87_d1e8_9b98773098d6["Validated"] a95b1e15_6984_fd51_0c08_95910b65bd04["QuicPathEvent.java"] e88e7377_c489_eb87_d1e8_9b98773098d6 -->|defined in| a95b1e15_6984_fd51_0c08_95910b65bd04 0759f2d6_b433_6744_49e4_da4f8fddcd78["Validated()"] e88e7377_c489_eb87_d1e8_9b98773098d6 -->|method| 0759f2d6_b433_6744_49e4_da4f8fddcd78 bbf582b1_9110_c7fd_14e5_6799507f92a9["String()"] e88e7377_c489_eb87_d1e8_9b98773098d6 -->|method| bbf582b1_9110_c7fd_14e5_6799507f92a9
Relationship Graph
Source Code
codec-classes-quic/src/main/java/io/netty/handler/codec/quic/QuicPathEvent.java lines 107–125
public static final class Validated extends QuicPathEvent {
/**
* The related network path between local and remote has been validated.
*
* @param local local address.
* @param remote remote address.
*/
public Validated(InetSocketAddress local, InetSocketAddress remote) {
super(local, remote);
}
@Override
public String toString() {
return "QuicPathEvent.Validated{" +
"local=" + local() +
", remote=" + remote() +
'}';
}
}
Source
Frequently Asked Questions
What is the Validated class?
Validated is a class in the netty codebase, defined in codec-classes-quic/src/main/java/io/netty/handler/codec/quic/QuicPathEvent.java.
Where is Validated defined?
Validated is defined in codec-classes-quic/src/main/java/io/netty/handler/codec/quic/QuicPathEvent.java at line 107.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free