| 4 | import io.netty.util.AttributeKey; |
| 5 | |
| 6 | public interface Constants { |
| 7 | |
| 8 | public static final AttributeKey<Channel> NEXT_CHANNEL = AttributeKey.newInstance("nxt_channel"); |
| 9 | |
| 10 | public static final AttributeKey<String> USER_ID = AttributeKey.newInstance("user_id"); |
| 11 | |
| 12 | public static final AttributeKey<String> CLIENT_KEY = AttributeKey.newInstance("client_key"); |
| 13 | } |
nothing calls this directly
no outgoing calls
no test coverage detected