public class ReIndexGraphPropertyWorker extends GraphPropertyWorker {
@Override
public void execute(InputStream in, GraphPropertyWorkData data) throws Exception {
if (getGraph() instanceof GraphBase) {
SearchIndex searchIndex = ((GraphBaseWithSearchIndex) getGraph()).getSearchIndex();
searchIndex.addElement(getGraph(), data.getElement(), data.getElement().getAuthorizations());
}
}