From f921245d071b9d9189e9c212809b2aa14205c6b5 Mon Sep 17 00:00:00 2001 From: HelenHuang <LinHuang@pollex.com.tw> Date: 星期四, 25 十一月 2021 12:24:56 +0800 Subject: [PATCH] [Update] [個人帳號設定]畫面修正 --- pamapi/src/main/java/com/pollex/pam/config/ApplicationProperties.java | 40 +++++++++++++++++++++++++++++++++++++++- 1 files changed, 39 insertions(+), 1 deletions(-) diff --git a/pamapi/src/main/java/com/pollex/pam/config/ApplicationProperties.java b/pamapi/src/main/java/com/pollex/pam/config/ApplicationProperties.java index cbe8982..6270c33 100644 --- a/pamapi/src/main/java/com/pollex/pam/config/ApplicationProperties.java +++ b/pamapi/src/main/java/com/pollex/pam/config/ApplicationProperties.java @@ -9,4 +9,42 @@ * See {@link tech.jhipster.config.JHipsterProperties} for a good example. */ @ConfigurationProperties(prefix = "application", ignoreUnknownFields = false) -public class ApplicationProperties {} +public class ApplicationProperties { + + private String otpWebServiceUrl; + private String otpWebServicePassword; + private String otpWebServiceSystemType; + private String eServiceLoginUrl; + + public String getOtpWebServiceUrl() { + return otpWebServiceUrl; + } + + public void setOtpWebServiceUrl(String otpWebServiceUrl) { + this.otpWebServiceUrl = otpWebServiceUrl; + } + + public String getOtpWebServicePassword() { + return otpWebServicePassword; + } + + public void setOtpWebServicePassword(String otpWebServicePassword) { + this.otpWebServicePassword = otpWebServicePassword; + } + + public String getOtpWebServiceSystemType() { + return otpWebServiceSystemType; + } + + public void setOtpWebServiceSystemType(String otpWebServiceSystemType) { + this.otpWebServiceSystemType = otpWebServiceSystemType; + } + + public String geteServiceLoginUrl() { + return eServiceLoginUrl; + } + + public void seteServiceLoginUrl(String eServiceLoginUrl) { + this.eServiceLoginUrl = eServiceLoginUrl; + } +} -- Gitblit v1.8.0