648540858
2022-10-17 1e1364e51a66614469b91e396d33a54bdf8f6e98
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
package com.genersoft.iot.vmp.vmanager.gb28181.play.bean;
 
import com.genersoft.iot.vmp.common.StreamInfo;
import com.genersoft.iot.vmp.gb28181.bean.Device;
import com.genersoft.iot.vmp.vmanager.bean.WVPResult;
import org.springframework.http.ResponseEntity;
import org.springframework.web.context.request.async.DeferredResult;
 
public class PlayResult {
 
    private DeferredResult<WVPResult<StreamInfo>> result;
    private String uuid;
 
    private Device device;
 
    public DeferredResult<WVPResult<StreamInfo>> getResult() {
        return result;
    }
 
    public void setResult(DeferredResult<WVPResult<StreamInfo>> result) {
        this.result = result;
    }
 
    public String getUuid() {
        return uuid;
    }
 
    public void setUuid(String uuid) {
        this.uuid = uuid;
    }
 
    public Device getDevice() {
        return device;
    }
 
    public void setDevice(Device device) {
        this.device = device;
    }
}