old mode 100644
new mode 100755
| | |
| | | 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; |
| | |
| | | |
| | | public class PlayResult { |
| | | |
| | | private DeferredResult<WVPResult<String>> result; |
| | | private DeferredResult<WVPResult<StreamInfo>> result; |
| | | private String uuid; |
| | | |
| | | private Device device; |
| | | |
| | | public DeferredResult<WVPResult<String>> getResult() { |
| | | public DeferredResult<WVPResult<StreamInfo>> getResult() { |
| | | return result; |
| | | } |
| | | |
| | | public void setResult(DeferredResult<WVPResult<String>> result) { |
| | | public void setResult(DeferredResult<WVPResult<StreamInfo>> result) { |
| | | this.result = result; |
| | | } |
| | | |