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

com.infusers.core.sse.requests.ActiveRequestEntryEvent Maven / Gradle / Ivy

There is a newer version: 2025.01.0002
Show newest version
package com.infusers.core.sse.requests;

import org.springframework.context.ApplicationEvent;

public class ActiveRequestEntryEvent extends ApplicationEvent {
	private HTTPRequestDto reqDto;
    
    public ActiveRequestEntryEvent(Object source, HTTPRequestDto reqDto) {
        super(source);
        this.reqDto = reqDto;
    }

	public HTTPRequestDto getReqDto() {
		return reqDto;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy