use of com.enonic.xp.repo.impl.dump.model.BranchDumpEntry in project xp by enonic.
the class BranchEntryProcessor method processLine.
@Override
public boolean processLine(final String line) throws IOException {
final EntryLoadResult.Builder result = EntryLoadResult.create();
final BranchDumpEntry branchDumpEntry = this.serializer.toBranchMetaEntry(line);
final VersionMeta meta = branchDumpEntry.getMeta();
addNode(result, branchDumpEntry, meta);
this.result = result.build();
return true;
}
Aggregations