private void parseLocation(final String value) {
isContentLocationSet = true;
if (value != null) {
final StringReader stringReader = new StringReader(value);
final StructuredFieldParser parser = new StructuredFieldParser(stringReader);
parser.setFoldingPreserved(false);
try {
contentLocation = parser.parse();
} catch (MimeException e) {
contentLocationParseException = e;
}
}
}