View by Classes

Findings - Overview

info May expose internal representation by incorporating reference to mutable object (Findbugs)

new org.jcoderz.commons.connector.http.ConnectorResponse(long, int, byte[]) may expose internal representation by storing an externally mutable object into ConnectorResponse.mResponse (test code)

Further info on the wiki.

This code stores a reference to an externally mutable object into the internal representation of the object.  If instances are accessed by untrusted code, and unchecked changes to the mutable object would compromise security or other important properties, you will need to do something different. Storing a copy of the object is better approach in many situations.

1org.jcoderz.commons.connector.http.ConnectorResponse
 [65]