forked from spring-attic/spring-security-oauth
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
removing remaining references to 'verification', changing to 'authori…
…zation' to conform to convention per SECOAUTH-51
- Loading branch information
1 parent
9e9c67a
commit 28965a4
Showing
3 changed files
with
18 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 5 additions & 7 deletions
12
.../springframework/security/oauth2/provider/code/TestInMemoryAuthorizationCodeServices.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,19 @@ | ||
package org.springframework.security.oauth2.provider.code; | ||
|
||
import org.junit.Before; | ||
import org.springframework.security.oauth2.provider.code.AuthorizationCodeServices; | ||
import org.springframework.security.oauth2.provider.code.InMemoryAuthorizationCodeServices; | ||
|
||
public class TestInMemoryAuthorizationCodeServices extends TestAuthorizationCodeServicesBase { | ||
|
||
private InMemoryAuthorizationCodeServices verificationCodeServices; | ||
private InMemoryAuthorizationCodeServices authorizationCodeServices; | ||
|
||
@Before | ||
public void setUp() throws Exception { | ||
verificationCodeServices = new InMemoryAuthorizationCodeServices(); | ||
verificationCodeServices.afterPropertiesSet(); | ||
authorizationCodeServices = new InMemoryAuthorizationCodeServices(); | ||
authorizationCodeServices.afterPropertiesSet(); | ||
} | ||
|
||
@Override | ||
AuthorizationCodeServices getVerificationCodeServices() { | ||
return verificationCodeServices; | ||
AuthorizationCodeServices getAuthorizationCodeServices() { | ||
return authorizationCodeServices; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters