aws-xray-recorder-sdk-core/src/main/java/com/amazonaws/xray/jakarta/servlet/AWSXRayServletFilter.java [278:286]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private String getSegmentName(HttpServletRequest httpServletRequest) {
        if (segmentNamingStrategy == null) {
            throw new RuntimeException(
                "The AWSXRayServletFilter requires either a fixedName init-param or an instance of SegmentNamingStrategy. "
                + "Add an init-param tag to the AWSXRayServletFilter's declaration in web.xml, using param-name: 'fixedName'. "
                + "Alternatively, pass an instance of SegmentNamingStrategy to the AWSXRayServletFilter constructor.");
        }
        return segmentNamingStrategy.nameForRequest(httpServletRequest);
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



aws-xray-recorder-sdk-core/src/main/java/com/amazonaws/xray/javax/servlet/AWSXRayServletFilter.java [278:286]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private String getSegmentName(HttpServletRequest httpServletRequest) {
        if (segmentNamingStrategy == null) {
            throw new RuntimeException(
                "The AWSXRayServletFilter requires either a fixedName init-param or an instance of SegmentNamingStrategy. "
                + "Add an init-param tag to the AWSXRayServletFilter's declaration in web.xml, using param-name: 'fixedName'. "
                + "Alternatively, pass an instance of SegmentNamingStrategy to the AWSXRayServletFilter constructor.");
        }
        return segmentNamingStrategy.nameForRequest(httpServletRequest);
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



