ge.jbizmo.jbizmo-commons-avro.10.0.0.source-code.ResponseStatus.avdl Maven / Gradle / Ivy
The newest version!
/**
* Definition for common response data
*/
@namespace("net.sourceforge.jbizmo.commons.avro.response")
protocol ResponseStatusProtocol {
// Enumeration of supported response codes
enum ResponseCode
{
SUCCESS,
NOT_FOUND,
ERROR
}
// Record that represents a response status
record ResponseStatus
{
ResponseCode code;
union {null, string} message = null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy