| Total Complexity | 4 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | package org.apereo.cas.configuration.model.core.authentication; |
||
| 14 | @RequiresModule(name = "cas-server-support-validation", automated = true) |
||
| 15 | public class AuthenticationAttributeReleaseProperties { |
||
| 16 | /** |
||
| 17 | * List of authentication attributes that should never be released. |
||
| 18 | */ |
||
| 19 | private List<String> neverRelease = new ArrayList<>(); |
||
| 20 | |||
| 21 | /** |
||
| 22 | * List of authentication attributes that should be the only ones released. An empty list indicates all attributes |
||
| 23 | * should be released. |
||
| 24 | */ |
||
| 25 | private List<String> onlyRelease = new ArrayList<>(); |
||
| 26 | |||
| 27 | public List<String> getNeverRelease() { |
||
| 28 | return neverRelease; |
||
| 29 | } |
||
| 30 | |||
| 31 | public void setNeverRelease(final List<String> neverRelease) { |
||
| 32 | this.neverRelease = neverRelease; |
||
| 33 | } |
||
| 34 | |||
| 35 | public List<String> getOnlyRelease() { |
||
| 36 | return onlyRelease; |
||
| 37 | } |
||
| 38 | |||
| 39 | public void setOnlyRelease(final List<String> onlyRelease) { |
||
| 40 | this.onlyRelease = onlyRelease; |
||
| 41 | } |
||
| 43 |