CallIdConfig
A configuration for the CallId plugin.
Constructors
Functions
Allows you to generate a call ID if an incoming request doesn't include it. Generates null
if it is impossible to generate a call ID for some reason.
Replies with a call ID using a specified header named headerName.
Allows you to retrieve a call ID from ApplicationCall. Returns null
if no call ID is found in a request.
Retrieves a call ID from a specified request header named headerName.
Verifies a retrieved or generated call ID. The code below verifies that a call ID is not an empty string:
Verifies a retrieved or generated call ID against the specified dictionary. Rejects an ApplicationCall if reject is true
; otherwise, an illegal call ID is ignored.
Extensions
Generates a fixed length call ID using the specified dictionary. Note that this function generates pseudo-random identifiers via regular java.util.Random and should not be considered as cryptographically secure. Also note that you need to use the same dictionary for CallIdVerifier, otherwise a generated call ID could be discarded or may lead to complete call rejection.