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

com.sap.cds.services.auditlog.SecurityLogContext 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("securityLog")
public interface SecurityLogContext extends EventContext {
	String CDS_NAME = "securityLog";

	@Override
	AuditLogService getService();

	SecurityLog getData();

	void setData(SecurityLog event);

	Instant getCreatedAt();

	void setCreatedAt(Instant createdAt);

	static SecurityLogContext create() {
		return EventContext.create(SecurityLogContext.class, null);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy