use of com.enonic.xp.repo.impl.dump.model.VersionsDumpEntry in project xp by enonic.
the class VersionEntryProcessor method processLine.
@Override
public boolean processLine(final String line) throws IOException {
final EntryLoadResult.Builder result = EntryLoadResult.create();
final VersionsDumpEntry nodeVersionsEntry = this.serializer.toNodeVersionsEntry(line);
final Set<VersionMeta> versions = nodeVersionsEntry.getVersions();
addVersions(result, nodeVersionsEntry, versions);
this.result = result.build();
return true;
}
Aggregations