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

cn.antcore.security.event.UpdateSessionEvent Maven / Gradle / Ivy

package cn.antcore.security.event;

import org.springframework.context.ApplicationEvent;

/**
 * 更新Session
 * 
*

Created by Hong.

*

2021/3/24

**/ public class UpdateSessionEvent extends ApplicationEvent { private String sessionId; public UpdateSessionEvent(Object source, String sessionId) { super(source); this.sessionId = sessionId; } public String getSessionId() { return sessionId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy