panlinlin
2021-02-25 0f58218badea86a5209ae7f1ccd60b7cb4b26eee
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package com.genersoft.iot.vmp.gb28181.transmit.request.impl;
 
import javax.sip.RequestEvent;
 
import com.genersoft.iot.vmp.gb28181.transmit.request.SIPRequestAbstractProcessor;
 
/**    
 * @Description:暂不支持的消息请求处理器
 * @author: swwheihei
 * @date:   2020年5月3日 下午5:32:59     
 */
public class OtherRequestProcessor extends SIPRequestAbstractProcessor {
 
    /**   
     * <p>Title: process</p>   
     * <p>Description: </p>   
     * @param evt
     * @param layer
     * @param transaction
     * @param config    
     */  
    @Override
    public void process(RequestEvent evt) {
        System.out.println("Unsupported the method: " + evt.getRequest().getMethod());
    }
 
}