| package com.qxueyou.scc.config; | 
|   | 
| import org.springframework.boot.context.properties.ConfigurationProperties; | 
|   | 
|   | 
| @ConfigurationProperties(prefix = SccConfig.CONFIG_PREFIX, ignoreUnknownFields = false,ignoreNestedProperties=true) | 
| public class SccConfig { | 
|     final static String CONFIG_PREFIX="scc"; | 
|      | 
|     private String excludeUrl; | 
|      | 
|     private String resRootPath; | 
|      | 
|     private String productId; | 
|      | 
|     private String licensePublicKey; | 
|   | 
|     private String licensePath; | 
|      | 
|     private String rtmpService; | 
|      | 
|     private String hlsService; | 
|      | 
|     private String domain; | 
|      | 
|     private String srcLivePath; | 
|      | 
|     public String getDomain() { | 
|         return domain; | 
|     } | 
|   | 
|     public void setDomain(String domain) { | 
|         this.domain = domain; | 
|     } | 
|   | 
|     public String getResRootPath() { | 
|         return resRootPath; | 
|     } | 
|   | 
|     public void setResRootPath(String resRootPath) { | 
|         this.resRootPath = resRootPath; | 
|     } | 
|   | 
|     public String getExcludeUrl() { | 
|         return excludeUrl; | 
|     } | 
|   | 
|     public void setExcludeUrl(String excludeUrl) { | 
|         this.excludeUrl = excludeUrl; | 
|     } | 
|   | 
|     public String getProductId() { | 
|         return productId; | 
|     } | 
|   | 
|     public void setProductId(String productId) { | 
|         this.productId = productId; | 
|     } | 
|   | 
|     public String getLicensePublicKey() { | 
|         return licensePublicKey; | 
|     } | 
|   | 
|     public void setLicensePublicKey(String licensePublicKey) { | 
|         this.licensePublicKey = licensePublicKey; | 
|     } | 
|   | 
|     public String getRtmpService() { | 
|         return rtmpService; | 
|     } | 
|   | 
|     public void setRtmpService(String rtmpService) { | 
|         this.rtmpService = rtmpService; | 
|     } | 
|   | 
|     public String getHlsService() { | 
|         return hlsService; | 
|     } | 
|   | 
|     public void setHlsService(String hlsService) { | 
|         this.hlsService = hlsService; | 
|     } | 
|   | 
|     public String getLicensePath() { | 
|         return licensePath; | 
|     } | 
|   | 
|     public void setLicensePath(String licensePath) { | 
|         this.licensePath = licensePath; | 
|     } | 
|   | 
|     public String getSrcLivePath() { | 
|         return srcLivePath; | 
|     } | 
|   | 
|     public void setSrcLivePath(String srcLivePath) { | 
|         this.srcLivePath = srcLivePath; | 
|     } | 
|      | 
| } |