From 55bfb3e3ac2cea5443320dfea61a0ed153bb4e84 Mon Sep 17 00:00:00 2001 From: wayne <wayne8692wayne8692@gmail.com> Date: 星期五, 12 十一月 2021 16:16:28 +0800 Subject: [PATCH] [add] todo#126591: e-service, otp登入流程 --- 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