Home / Class/ Setting Class — netty Architecture

Setting Class — netty Architecture

Architecture documentation for the Setting class in DefaultSpdySettingsFrame.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  fc2156aa_abc3_3807_65dc_282ddf272279["Setting"]
  6fc7c907_becf_1896_cac2_0c45567de7f0["DefaultSpdySettingsFrame.java"]
  fc2156aa_abc3_3807_65dc_282ddf272279 -->|defined in| 6fc7c907_becf_1896_cac2_0c45567de7f0
  e83d2875_294a_db51_2f30_cc22e13b71de["Setting()"]
  fc2156aa_abc3_3807_65dc_282ddf272279 -->|method| e83d2875_294a_db51_2f30_cc22e13b71de
  081d1f2f_1cb1_47b3_647d_4c2b00ca1146["getValue()"]
  fc2156aa_abc3_3807_65dc_282ddf272279 -->|method| 081d1f2f_1cb1_47b3_647d_4c2b00ca1146
  c9fcbbec_24df_fc69_43e9_32cf6127bd1e["setValue()"]
  fc2156aa_abc3_3807_65dc_282ddf272279 -->|method| c9fcbbec_24df_fc69_43e9_32cf6127bd1e
  82bdd59f_0375_8e4b_46e2_4150646e13b9["isPersist()"]
  fc2156aa_abc3_3807_65dc_282ddf272279 -->|method| 82bdd59f_0375_8e4b_46e2_4150646e13b9
  d9a0ca97_a654_a04b_3903_e7a45ae655ee["setPersist()"]
  fc2156aa_abc3_3807_65dc_282ddf272279 -->|method| d9a0ca97_a654_a04b_3903_e7a45ae655ee
  83c1b5aa_d01c_bfc5_8dd8_5d8d89bdd6ed["isPersisted()"]
  fc2156aa_abc3_3807_65dc_282ddf272279 -->|method| 83c1b5aa_d01c_bfc5_8dd8_5d8d89bdd6ed
  4b82ba68_7601_2905_6105_1f4ffd19accd["setPersisted()"]
  fc2156aa_abc3_3807_65dc_282ddf272279 -->|method| 4b82ba68_7601_2905_6105_1f4ffd19accd

Relationship Graph

Source Code

codec-http/src/main/java/io/netty/handler/codec/spdy/DefaultSpdySettingsFrame.java lines 148–183

    private static final class Setting {

        private int value;
        private boolean persist;
        private boolean persisted;

        Setting(int value, boolean persist, boolean persisted) {
            this.value = value;
            this.persist = persist;
            this.persisted = persisted;
        }

        int getValue() {
            return value;
        }

        void setValue(int value) {
            this.value = value;
        }

        boolean isPersist() {
            return persist;
        }

        void setPersist(boolean persist) {
            this.persist = persist;
        }

        boolean isPersisted() {
            return persisted;
        }

        void setPersisted(boolean persisted) {
            this.persisted = persisted;
        }
    }

Frequently Asked Questions

What is the Setting class?
Setting is a class in the netty codebase, defined in codec-http/src/main/java/io/netty/handler/codec/spdy/DefaultSpdySettingsFrame.java.
Where is Setting defined?
Setting is defined in codec-http/src/main/java/io/netty/handler/codec/spdy/DefaultSpdySettingsFrame.java at line 148.

Analyze Your Own Codebase

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

Try Supermodel Free