Skip to content
This repository was archived by the owner on Jul 1, 2025. It is now read-only.

Commit 32c7f63

Browse files
committed
Merge pull request #73 from dfcoffin/master
1) Update to Spring Security OAuth 2.0.2.RELEASE 2) Add refresh_token … … …and scope to Authorization List screen entries
2 parents 06e9406 + 31eb856 commit 32c7f63

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@
125125
<spring.version>4.0.3.RELEASE</spring.version>
126126
<spring.security.version>3.2.3.RELEASE</spring.security.version>
127127
<spring-data-jpa.version>1.4.3.RELEASE</spring-data-jpa.version>
128-
<spring-security-oauth2.version>2.0.0.RC2</spring-security-oauth2.version>
128+
<spring-security-oauth2.version>2.0.2.RELEASE</spring-security-oauth2.version>
129129
<apache-httpcomponent.version>4.3.2</apache-httpcomponent.version>
130130
<javax-servlet.version>3.0.1</javax-servlet.version>
131131

src/main/webapp/WEB-INF/jsp/RetailCustomer/AuthorizationList/index.jsp

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,18 +33,22 @@
3333
<thead>
3434
<tr>
3535
<th>Name</th>
36-
<th>Access Token</th>
3736
<th>Status</th>
38-
<th>Subscription ID</th>
37+
<th>Subscription ID</th>
38+
<th>Access Token</th>
39+
<th>Refresh Token</th>
40+
<th>Scope</th>
3941
</tr>
4042
</thead>
4143
<tbody>
4244
<c:forEach var="authorization" items="${authorizationList}">
4345
<tr>
4446
<td class="data_custodian"><c:out value="${authorization.applicationInformation.dataCustodianId}"/></td>
45-
<td class="access_token"><c:out value="${authorization.accessToken}"/></td>
4647
<td class="status"><c:out value="${authorization.status}"/></td>
47-
<td class="subscription_id"><c:out value="${authorization.resourceURI}"/></td>
48+
<td class="subscription_id"><c:out value="${authorization.resourceURI}"/></td>
49+
<td class="access_token"><c:out value="${authorization.accessToken}"/></td>
50+
<td class="refresh_token"><c:out value="${authorization.refreshToken}"/></td>
51+
<td class="scope"><c:out value="${authorization.scope}"/></td>
4852
</tr>
4953
</c:forEach>
5054
</tbody>

0 commit comments

Comments
 (0)