summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.OAuth2.AuthorizationServer/OAuth2/IAuthorizationServerHost.cs
Commit message (Collapse)AuthorAgeFilesLines
* Removes more remnants of Code Contracts.Andrew Arnott2012-12-261-132/+0
|
* Replaces DNOA's internal Requires class with Validation NuGet package.Andrew Arnott2012-12-261-0/+1
|
* Authorization servers can override the granted scopes for all grant types.Andrew Arnott2012-10-301-30/+16
| | | | | | This change adds the ability for authorization servers to override the granted scopes of client credential and resource owner password grant types. Fixes #225
* Fixed build warnings due to XML commentsAndrew Arnott2012-05-291-2/+2
|
* Special handling for client credential grant typeAndrew Arnott2012-05-291-4/+46
| | | | | | | | Access token requests that carry client credential grants are now specially handled and signal to the authorization server that an authorization record should be created. More work toward #138
* Resource owner password grant method renameAndrew Arnott2012-05-291-4/+6
| | | | | | | | | | | | Renamed IAuthorizationServerHost.IsResourceOwnerCredentialValid to TryAuthorizeResourceOwnerCredentialGrant so that authorization servers are prepared to approve refresh tokens that may be issued as a result of a resource owner password grant. This also removes some of the "validation" that wasn't really doing anything useful for resource owner password grant types. Toward an eventual fix for #138
* Authorization Server hosts now instantiate their own AccessTokens rather ↵Andrew Arnott2012-04-251-5/+6
| | | | | | | than just parameters. AccessTokens are now serialized via a virtual method on that instance. Fixes #38, I think.
* Moved IAuthorizationServerHost interface into the auth server project.Andrew Arnott2012-04-241-0/+214