songww
2020-05-13 6ecd801c2365feb4e65f6684065aa97f11615797
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
28
29
30
31
32
package com.genersoft.iot.vmp.gb28181.transmit.request.impl;
 
import javax.sip.RequestEvent;
import javax.sip.ServerTransaction;
 
import org.springframework.stereotype.Component;
 
import com.genersoft.iot.vmp.gb28181.SipLayer;
import com.genersoft.iot.vmp.gb28181.transmit.request.ISIPRequestProcessor;
 
/**    
 * @Description:暂不支持的消息请求处理器
 * @author: songww
 * @date:   2020年5月3日 下午5:32:59     
 */
@Component
public class OtherRequestProcessor implements ISIPRequestProcessor {
 
    /**   
     * <p>Title: process</p>   
     * <p>Description: </p>   
     * @param evt
     * @param layer
     * @param transaction
     * @param config    
     */  
    @Override
    public void process(RequestEvent evt, SipLayer layer) {
        System.out.println("no support the method! Method:" + evt.getRequest().getMethod());
    }
 
}