
io.axway.iron.spi.model.snapshot.SerializableInstance 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
The newest version!
package io.axway.iron.spi.model.snapshot;
import java.util.*;
import javax.xml.bind.annotation.*;
@XmlType(propOrder = {"id", "values"})
public class SerializableInstance {
private long m_id;
private Map m_values;
public long getId() {
return m_id;
}
public void setId(long id) {
m_id = id;
}
public Map getValues() {
return m_values;
}
public void setValues(Map values) {
m_values = values;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy