| Total Complexity | 4 |
| Total Lines | 29 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 1 | Features | 0 |
| 1 | package org.apereo.cas.configuration.model.support.sms; |
||
| 14 | @RequiresModule(name = "cas-server-support-sms-twilio") |
||
| 15 | public class TwilioProperties implements Serializable { |
||
| 16 | private static final long serialVersionUID = -7043132225482495229L; |
||
| 17 | /** |
||
| 18 | * Twilio account identifier used for authentication. |
||
| 19 | */ |
||
| 20 | @RequiredProperty |
||
| 21 | private String accountId; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * Twilio secret token used for authentication. |
||
| 25 | */ |
||
| 26 | @RequiredProperty |
||
| 27 | private String token; |
||
| 28 | |||
| 29 | public String getAccountId() { |
||
| 30 | return accountId; |
||
| 31 | } |
||
| 32 | |||
| 33 | public void setAccountId(final String accountId) { |
||
| 34 | this.accountId = accountId; |
||
| 35 | } |
||
| 36 | |||
| 37 | public String getToken() { |
||
| 38 | return token; |
||
| 39 | } |
||
| 40 | |||
| 41 | public void setToken(final String token) { |
||
| 42 | this.token = token; |
||
| 43 | } |
||
| 45 |