You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@oltu.apache.org by st...@apache.org on 2014/09/12 13:19:26 UTC

svn commit: r1624499 - /oltu/trunk/oauth-2.0/common/src/main/java/org/apache/oltu/oauth2/common/message/types/GrantType.java

Author: stein
Date: Fri Sep 12 11:19:26 2014
New Revision: 1624499

URL: http://svn.apache.org/r1624499
Log:
OLTU-160 Add the implicit grant type

Modified:
    oltu/trunk/oauth-2.0/common/src/main/java/org/apache/oltu/oauth2/common/message/types/GrantType.java

Modified: oltu/trunk/oauth-2.0/common/src/main/java/org/apache/oltu/oauth2/common/message/types/GrantType.java
URL: http://svn.apache.org/viewvc/oltu/trunk/oauth-2.0/common/src/main/java/org/apache/oltu/oauth2/common/message/types/GrantType.java?rev=1624499&r1=1624498&r2=1624499&view=diff
==============================================================================
--- oltu/trunk/oauth-2.0/common/src/main/java/org/apache/oltu/oauth2/common/message/types/GrantType.java (original)
+++ oltu/trunk/oauth-2.0/common/src/main/java/org/apache/oltu/oauth2/common/message/types/GrantType.java Fri Sep 12 11:19:26 2014
@@ -29,6 +29,7 @@ package org.apache.oltu.oauth2.common.me
 public enum GrantType {
     // NONE("none"),
     AUTHORIZATION_CODE("authorization_code"),
+    IMPLICIT("implicit"),
     PASSWORD("password"),
     REFRESH_TOKEN("refresh_token"),
     CLIENT_CREDENTIALS("client_credentials");