mirror of
https://github.com/hpd840321/starRiverProperty.git
synced 2026-06-09 08:20:31 +08:00
dee355b4a7
- artifacts/decompiled 树与相关源码变更 - maven-cw-elevator-application 业务 docs 与 package-info - scripts 下 formatter 校验与辅助脚本 - 其他子工程/接口与发布线一并纳入版本控制 Made-with: Cursor Former-commit-id: e102e8cab64e575bcd23c9a66a598aa1892bb492
60 lines
811 B
Java
60 lines
811 B
Java
package cn.cloudwalk.event.client;
|
|
|
|
import cn.cloudwalk.cwos.client.event.event.EventType;
|
|
import cn.cloudwalk.event.handler.EventHandler;
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public class EventSubscribeHandlers
|
|
{
|
|
private EventType eventType;
|
|
private String serviceCode;
|
|
private List<EventHandler> eventHandlerList;
|
|
|
|
public EventType getEventType() {
|
|
return this.eventType;
|
|
}
|
|
|
|
public void setEventType(EventType eventType) {
|
|
this.eventType = eventType;
|
|
}
|
|
|
|
public String getServiceCode() {
|
|
return this.serviceCode;
|
|
}
|
|
|
|
public void setServiceCode(String serviceCode) {
|
|
this.serviceCode = serviceCode;
|
|
}
|
|
|
|
public List<EventHandler> getEventHandlerList() {
|
|
return this.eventHandlerList;
|
|
}
|
|
|
|
public void setEventHandlerList(List<EventHandler> eventHandlerList) {
|
|
this.eventHandlerList = eventHandlerList;
|
|
}
|
|
}
|
|
|
|
|