com.tenduke.events.api.model.object.RequestProcessed 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.object;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.tenduke.events.api.model.data.ClientFields;
import com.tenduke.events.api.model.data.DurationFields;
import com.tenduke.events.api.model.data.ErrorInfoFields;
import com.tenduke.events.api.model.data.HttpRequestFields;
import com.tenduke.events.api.model.data.ProviderFields;
import com.tenduke.events.api.model.data.TenantFields;
import com.tenduke.events.api.model.data.UserFields;
/**
* Request has been processed.
* @author jarkko
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
public interface RequestProcessed extends
HttpRequestFields,
UserFields,
ClientFields,
ProviderFields,
DurationFields,
TenantFields,
ErrorInfoFields {
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy