| | |
| | | package com.genersoft.iot.vmp.conf; |
| | | |
| | | import io.swagger.models.auth.In; |
| | | import org.springframework.boot.context.properties.ConfigurationProperties; |
| | | import org.springframework.stereotype.Component; |
| | | |
| | |
| | | |
| | | private Boolean seniorSdp = Boolean.FALSE; |
| | | |
| | | private Long playTimeout = 18000L; |
| | | private Integer playTimeout = 18000; |
| | | |
| | | private int platformPlayTimeout = 60000; |
| | | |
| | |
| | | return seniorSdp; |
| | | } |
| | | |
| | | public Long getPlayTimeout() { |
| | | public Integer getPlayTimeout() { |
| | | return playTimeout; |
| | | } |
| | | |
| | |
| | | this.seniorSdp = seniorSdp; |
| | | } |
| | | |
| | | public void setPlayTimeout(Long playTimeout) { |
| | | public void setPlayTimeout(Integer playTimeout) { |
| | | this.playTimeout = playTimeout; |
| | | } |
| | | |