Interface OA2TransactionScopes
-
public interface OA2TransactionScopes
This contains the bits about scopes for a given transaction. Note that we should have the OA2ServiceTransaction here, but due to inheritance and package issues, that is impossible. Best we can do is abstract what we need to an interface and access that. This permits theAGIResponse2
to figure out if it needs to return a list of scopes in the case that the requested scopes do not match the stored ones. This is for CIL-493.Created by Jeff Gaynor
on 7/15/19 at 7:51 PM
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Collection<String>
getScopes()
net.sf.json.JSONObject
getUserMetaData()
-
-
-
Method Detail
-
getUserMetaData
net.sf.json.JSONObject getUserMetaData()
-
getScopes
Collection<String> getScopes()
-
-