Fixed
Details
Assignee
Ian YoungIan YoungReporter
Ian YoungIan YoungComponents
Fix versions
Affects versions
Details
Details
Assignee
Ian Young
Ian YoungReporter
Ian Young
Ian YoungComponents
Fix versions
Affects versions
Created September 7, 2017 at 11:01 AM
Updated May 16, 2024 at 12:37 PM
Resolved January 30, 2018 at 5:01 PM
AbstractDOMTraversalStage
includes a couple of helper methods which are SAML-specific:ancestorEntity
andaddError
.It would be fine to introduce an abstract subclass (e.g.,
AbstractSAMLTraversalStage
to house these, but a more general approach involving a new abstracterrorPrefix
method might be better.At present,
ancestorEntity
is only used byaddError
and that is only used inCRDetectionStage
, so an even simpler solution would be to make both methodsprivate
and move them down there for now.