added "NONE" type auth

pull/263/head
Justin Richer 2012-12-10 17:16:35 -05:00
parent 94c37f5815
commit 7586c6d661
1 changed files with 2 additions and 1 deletions

View File

@ -118,7 +118,8 @@ public class ClientDetailsEntity implements ClientDetails {
SECRET_POST("client_secret_post"),
SECRET_BASIC("client_secret_basic"),
SECRET_JWT("client_secret_jwt"),
PRIVATE_KEY("private_key_jwt");
PRIVATE_KEY("private_key_jwt"),
NONE("none");
private final String value;