class documentation

Enumeration of interception phases.

Constant ALL Intercept all phases. This is a special value that can be used to indicate that the interceptor should be applied to all phases.
Constant REQUEST_ERROR_RESPONSE Intercept the request error response phase.
Constant REQUEST_POST_PROCESSING Intercept the request post-processing phase.
Constant REQUEST_PRE_PROCESSING Intercept the request pre-processing phase.

Inherited from ACMEIntEnum:

Class Method has Check whether the enum type has an entry with either the given int value or string name.
Class Method to Return an enum value by its name.
Method __int__ Get the integer value of an enum.
Method __repr__ Stringify an enum.
Method __str__ Stringify an enum.
ALL: int =

Intercept all phases. This is a special value that can be used to indicate that the interceptor should be applied to all phases.

Value
0
REQUEST_ERROR_RESPONSE: int =

Intercept the request error response phase.

Value
3
REQUEST_POST_PROCESSING: int =

Intercept the request post-processing phase.

Value
2
REQUEST_PRE_PROCESSING: int =

Intercept the request pre-processing phase.

Value
1