Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
EntityExternalIdentifierTypeContract |
|
| 1.0;1 |
1 | package org.kuali.rice.kim.api.identity.external; | |
2 | ||
3 | import org.kuali.rice.kim.api.identity.TypeContract; | |
4 | ||
5 | public interface EntityExternalIdentifierTypeContract extends TypeContract { | |
6 | /** | |
7 | * This value determines if the encryption is required for this type. | |
8 | * | |
9 | * @return the boolean value representing if encryption is required for this type | |
10 | */ | |
11 | boolean isEncryptionRequired(); | |
12 | } |