| | |
| | | private String eServiceLoginUrl; |
| | | private String eServiceLoginFunc; |
| | | private String eServiceLoginSys; |
| | | private SMS sms; |
| | | |
| | | public boolean isMockLogin() { |
| | | return mockLogin; |
| | |
| | | public void seteServiceLoginSys(String eServiceLoginSys) { |
| | | this.eServiceLoginSys = eServiceLoginSys; |
| | | } |
| | | |
| | | public SMS getSms() { |
| | | return sms; |
| | | } |
| | | |
| | | public void setSms(SMS sms) { |
| | | this.sms = sms; |
| | | } |
| | | |
| | | public static class SMS { |
| | | private String url; |
| | | private String sourceCode; |
| | | private String sender; |
| | | private String smsType; |
| | | |
| | | public String getUrl() { |
| | | return url; |
| | | } |
| | | |
| | | public void setUrl(String url) { |
| | | this.url = url; |
| | | } |
| | | |
| | | public String getSourceCode() { |
| | | return sourceCode; |
| | | } |
| | | |
| | | public void setSourceCode(String sourceCode) { |
| | | this.sourceCode = sourceCode; |
| | | } |
| | | |
| | | public String getSender() { |
| | | return sender; |
| | | } |
| | | |
| | | public void setSender(String sender) { |
| | | this.sender = sender; |
| | | } |
| | | |
| | | public String getSmsType() { |
| | | return smsType; |
| | | } |
| | | |
| | | public void setSmsType(String smsType) { |
| | | this.smsType = smsType; |
| | | } |
| | | } |
| | | } |