From c18dd55c742a9d01bfa55217708cc9d67039dee6 Mon Sep 17 00:00:00 2001 From: jshqhxm <jshqhxm@gmail.com> Date: 星期日, 09 十月 2022 16:20:39 +0800 Subject: [PATCH] 去除 com.sun.javafx 无引用包,会导致在linux环境下编译不通过 --- src/main/java/com/genersoft/iot/vmp/conf/UserSetting.java | 18 +++++++++--------- 1 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/main/java/com/genersoft/iot/vmp/conf/UserSetting.java b/src/main/java/com/genersoft/iot/vmp/conf/UserSetting.java index d28ddeb..cad6e69 100644 --- a/src/main/java/com/genersoft/iot/vmp/conf/UserSetting.java +++ b/src/main/java/com/genersoft/iot/vmp/conf/UserSetting.java @@ -31,7 +31,7 @@ private Boolean logInDatebase = Boolean.TRUE; - private Boolean redisConfig = Boolean.TRUE; + private Boolean usePushingAsStatus = Boolean.TRUE; private String serverId = "000000"; @@ -123,14 +123,6 @@ this.thirdPartyGBIdReg = thirdPartyGBIdReg; } - public Boolean getRedisConfig() { - return redisConfig; - } - - public void setRedisConfig(Boolean redisConfig) { - this.redisConfig = redisConfig; - } - public Boolean getRecordSip() { return recordSip; } @@ -146,4 +138,12 @@ public void setPlatformPlayTimeout(int platformPlayTimeout) { this.platformPlayTimeout = platformPlayTimeout; } + + public Boolean isUsePushingAsStatus() { + return usePushingAsStatus; + } + + public void setUsePushingAsStatus(Boolean usePushingAsStatus) { + this.usePushingAsStatus = usePushingAsStatus; + } } -- Gitblit v1.8.0