![JAR search and dependency download from the Maven repository](/logo.png)
io.axway.iron.spi.model.snapshot.SerializableAttributeDefinition 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 javax.xml.bind.annotation.*;
@XmlType(propOrder = {"dataType", "nullable"})
public class SerializableAttributeDefinition {
private String m_dataType;
private boolean m_nullable;
public String getDataType() {
return m_dataType;
}
public void setDataType(String dataType) {
m_dataType = dataType;
}
public boolean isNullable() {
return m_nullable;
}
public void setNullable(boolean nullable) {
m_nullable = nullable;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy