All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sap.cds.services.auditlog.ConfigChangeLogContext Maven / Gradle / Ivy

There is a newer version: 3.4.1
Show newest version
/**************************************************************************
 * (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);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy