com.bazaarvoice.emodb.sor.db.HistoryMigrationScanResult Maven / Gradle / Ivy
package com.bazaarvoice.emodb.sor.db;
import java.nio.ByteBuffer;
import java.util.UUID;
public class HistoryMigrationScanResult extends MigrationScanResult {
private final int _ttl;
public HistoryMigrationScanResult(ByteBuffer rowKey, UUID changeId, ByteBuffer value, int ttl) {
super(rowKey, changeId, value);
_ttl = ttl;
}
public int getTtl() {
return _ttl;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy