com.sap.cds.services.auditlog.ConfigChangeLogContext Maven / Gradle / Ivy
/**************************************************************************
* (C) 2019-2024 SAP SE or an SAP affiliate company. All rights reserved. *
**************************************************************************/
package com.sap.cds.services.auditlog;
import java.time.Instant;
import com.sap.cds.services.EventContext;
import com.sap.cds.services.EventName;
@EventName("configChangeLog")
public interface ConfigChangeLogContext extends EventContext {
String CDS_NAME = "configChangeLog";
@Override
AuditLogService getService();
ConfigChangeLog getData();
void setData(ConfigChangeLog event);
Instant getCreatedAt();
void setCreatedAt(Instant createdAt);
static ConfigChangeLogContext create() {
return EventContext.create(ConfigChangeLogContext.class, null);
}
}