com.tenduke.events.api.model.data.RequestFields Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of events-api Show documentation
Show all versions of events-api Show documentation
Objects and interfaces describing data communicated in the 10Duke Event Data system API
package com.tenduke.events.api.model.data;
import com.fasterxml.jackson.annotation.JsonInclude;
/**
* Event data fields for identifying the request related to the event.
* @author jarkko
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
public interface RequestFields {
/**
*
* Gets request id.
*
*
* Id created by the server for the request. This id is typically used for associating
* event with a request log row.
*
* @return The request id.
*/
String getRequestId();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy