String path = this.config.getPath();
try {
Node node = indexable.applyPath(path);
if(node == null)
throw new NotIndexableException("Could not retrieve content for schema field: "+this.config);
this.content = node.getTextContent();
} catch (XPathExpressionException e) {
throw new NotIndexableException("Can not apply Path", e);
}