![JAR search and dependency download from the Maven repository](/logo.png)
io.axway.iron.spi.model.snapshot.SerializableSnapshot Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iron-spi Show documentation
Show all versions of iron-spi Show documentation
Iron Service Provider Interfaces
package io.axway.iron.spi.model.snapshot;
import java.math.BigInteger;
import java.util.*;
import javax.xml.bind.annotation.*;
@XmlType(propOrder = {"snapshotModelVersion", "transactionId", "entities"})
public class SerializableSnapshot {
public static final long SNAPSHOT_MODEL_VERSION = 1;
private long m_snapshotModelVersion;
private BigInteger m_transactionId;
private Collection m_entities;
public long getSnapshotModelVersion() {
return m_snapshotModelVersion;
}
public void setSnapshotModelVersion(long snapshotModelVersion) {
m_snapshotModelVersion = snapshotModelVersion;
}
public BigInteger getTransactionId() {
return m_transactionId;
}
public void setTransactionId(BigInteger transactionId) {
m_transactionId = transactionId;
}
public Collection getEntities() {
return m_entities;
}
public void setEntities(Collection entities) {
m_entities = entities;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy