com.evasion.module.common.entity.IEventData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of API Show documentation
Show all versions of API Show documentation
API de l'application modulaire evasion-en-ligne
The newest version!
/*
* To change this template, choose Tools | Templates and open the template in
* the editor.
*/
package com.evasion.module.common.entity;
import com.evasion.entity.security.User;
import java.util.Date;
/**
*
* @author glon-56610
*/
public interface IEventData {
Long getId();
String getCode();
String getEntityId();
String getEntityName();
Date getDateRecord();
String getAuteur();
String getPlugin();
}