-
Constructors Constructor Description org.owasp.esapi.codecs.MySQLCodec(int) org.owasp.esapi.reference.AbstractAccessReferenceMap(Set<Object>) This constructor internally calls the abstract methodAbstractAccessReferenceMap.getUniqueReference()
. Since this is a constructor, any subclass that implements getUniqueReference() has not had it's own constructor run. This leads to strange bugs because subclass internal state is initializaed after calls to getUniqueReference() have already happened. If this constructor is desired in a subclass, consider runningAbstractAccessReferenceMap.update(Set)
in the subclass constructor instead.