| | |
| | | package com.genersoft.iot.vmp.gb28181.transmit.event.request.impl; |
| | | |
| | | import com.genersoft.iot.vmp.gb28181.transmit.SIPProcessorObserver; |
| | | import com.genersoft.iot.vmp.gb28181.transmit.event.request.SIPRequestProcessorAbstract; |
| | | import com.genersoft.iot.vmp.gb28181.transmit.event.request.ISIPRequestProcessor; |
| | | import com.genersoft.iot.vmp.gb28181.transmit.event.request.SIPRequestProcessorParent; |
| | | import org.springframework.beans.factory.InitializingBean; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Component; |
| | | |
| | | import javax.sip.RequestEvent; |
| | | |
| | | /** |
| | | * @description:CANCEL请求处理器 |
| | | * @author: swwheihei |
| | | * @date: 2020年5月3日 下午5:32:23 |
| | | /** |
| | | * SIP命令类型: CANCEL请求 |
| | | */ |
| | | @Component |
| | | public class CancelRequestProcessor extends SIPRequestProcessorAbstract { |
| | | public class CancelRequestProcessor extends SIPRequestProcessorParent implements InitializingBean, ISIPRequestProcessor { |
| | | |
| | | private String method = "CANCEL"; |
| | | |