songww
2020-05-07 70091f29f2c3c3f974ffc2cc8f140db9f992ca0e
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
package com.genersoft.iot.vmp.conf;
 
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Configuration;
 
@Configuration
public class SipConfig {
 
    @Value("${sip.ip}")
    String sipIp;
    @Value("${sip.port}")
    Integer sipPort;
    @Value("${sip.domain}")
    String sipDomain;
    @Value("${sip.password}")
    String sipPassword;
    @Value("${media.ip}")
    String mediaIp;
    
    @Value("${media.port}")
    Integer mediaPort;
    
    @Value("${sip.ptz.speed:50}")
    Integer speed;
 
    public String getSipIp() {
        return sipIp;
    }
 
    public void setSipIp(String sipIp) {
        this.sipIp = sipIp;
    }
 
    public Integer getSipPort() {
        return sipPort;
    }
 
    public void setSipPort(Integer sipPort) {
        this.sipPort = sipPort;
    }
 
    public String getSipDomain() {
        return sipDomain;
    }
 
    public void setSipDomain(String sipDomain) {
        this.sipDomain = sipDomain;
    }
 
    public String getSipPassword() {
        return sipPassword;
    }
 
    public void setSipPassword(String sipPassword) {
        this.sipPassword = sipPassword;
    }
 
    public String getMediaIp() {
        return mediaIp;
    }
 
    public void setMediaIp(String mediaIp) {
        this.mediaIp = mediaIp;
    }
 
    public Integer getMediaPort() {
        return mediaPort;
    }
 
    public void setMediaPort(Integer mediaPort) {
        this.mediaPort = mediaPort;
    }
 
    public Integer getSpeed() {
        return speed;
    }
 
    public void setSpeed(Integer speed) {
        this.speed = speed;
    }
    
    
}