Any reason why they are immutable? There's basically no way (that I found at least) to add new properties after the ContentResponse is created and it's created without properties by MimeResponseImpl.getResponse()... Maybe I'm not understanding the proper usage, but I'd like to be able to add properties to the ContentResponse dynamically after it's created (i.e. in HeaderInterceptor to inject header content).
Ideas?
Dealt with by copying the FragmentResponse and returning a new one if no properties exist. Thanks, Julien!