Files
java-tutorials/spring-5-reactive-security/src/main/java/com/baeldung/webflux/EmployeeCreationEvent.java
T

16 lines
373 B
Java

package com.baeldung.webflux;
import lombok.AllArgsConstructor;
import lombok.Data;
@Data
public class EmployeeCreationEvent {
private String employeeId;
private String creationTime;
public EmployeeCreationEvent(String employeeId, String creationTime) {
super();
this.employeeId = employeeId;
this.creationTime = creationTime;
}
}