Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Duplicate
-
None
-
None
-
None
Description
Grant types need to be updated according to latest spec[0].
Current ones as for [1] are :
public enum GrantType
{ AUTHORIZATION_CODE("authorization_code"), PASSWORD("password"), ASSERTION("assertion"), REFRESH_TOKEN("refresh_token"), NONE("none"); ..... }"asssertion" do not exists anymore, "refresh_token" is now "token" and "client_credentials" needs to be added.
All the validators need to be updated accordingly.
patch to follow.
[0] http://tools.ietf.org/html/draft-ietf-oauth-v2-22
[1] https://github.com/apache/amber/blob/trunk/oauth-2.0/oauth2-common/src/main/java/org/apache/amber/oauth2/common/message/types/GrantType.java