add @Transient to function getAuthorizedGrantTypes() so it does not persist

pull/989/head
Charif Belhaffef 2014-12-24 09:59:51 +01:00 committed by Justin Richer
parent c6c09b9c6c
commit e8015051d2
1 changed files with 1 additions and 0 deletions

View File

@ -450,6 +450,7 @@ public class ClientDetailsEntity implements ClientDetails {
* passthrough for SECOAUTH api
*/
@Override
@Transient
public Set<String> getAuthorizedGrantTypes() {
return getGrantTypes();
}