| | |
| | | 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<ResponseEntity<String>> result; |
| | | private DeferredResult<WVPResult<StreamInfo>> result; |
| | | private String uuid; |
| | | |
| | | private Device device; |
| | | |
| | | public DeferredResult<ResponseEntity<String>> getResult() { |
| | | public DeferredResult<WVPResult<StreamInfo>> getResult() { |
| | | return result; |
| | | } |
| | | |
| | | public void setResult(DeferredResult<ResponseEntity<String>> result) { |
| | | public void setResult(DeferredResult<WVPResult<StreamInfo>> result) { |
| | | this.result = result; |
| | | } |
| | | |