Home / Class/ CrlInfo Class — netty Architecture

CrlInfo Class — netty Architecture

Architecture documentation for the CrlInfo class in RevocationServer.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  2c2396d7_80fa_e099_9c6c_16fcff79fe82["CrlInfo"]
  472b4c1d_cdef_78a7_ce1c_ab5706b45e49["RevocationServer.java"]
  2c2396d7_80fa_e099_9c6c_16fcff79fe82 -->|defined in| 472b4c1d_cdef_78a7_ce1c_ab5706b45e49
  b9de6cee_c59f_86a5_6b08_f492ead5db8e["CrlInfo()"]
  2c2396d7_80fa_e099_9c6c_16fcff79fe82 -->|method| b9de6cee_c59f_86a5_6b08_f492ead5db8e

Relationship Graph

Source Code

pkitesting/src/main/java/io/netty/pkitesting/RevocationServer.java lines 189–201

    private static final class CrlInfo {
        private final X509Bundle issuer;
        private final URI uri;
        private final Map<BigInteger, Instant> revokedCerts;
        private final Provider provider;

        CrlInfo(X509Bundle issuer, URI uri, Provider provider) {
            this.issuer = issuer;
            this.uri = uri;
            this.provider = provider;
            revokedCerts = new ConcurrentHashMap<>();
        }
    }

Frequently Asked Questions

What is the CrlInfo class?
CrlInfo is a class in the netty codebase, defined in pkitesting/src/main/java/io/netty/pkitesting/RevocationServer.java.
Where is CrlInfo defined?
CrlInfo is defined in pkitesting/src/main/java/io/netty/pkitesting/RevocationServer.java at line 189.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free