Advertisement
Guest User

Untitled

a guest
Dec 13th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. try {
  2. List<TrustedFacets> trustedFacetsList = getTrustedFacetsList(url, appId);
  3. for (TrustedFacets trustedFacets : trustedFacetsList) {
  4. if (!trustedFacets.getVersion().equals(version)) {
  5. return trustedFacets.getIds();
  6. }
  7. }
  8. throw new RelyingPartyException("Exception");
  9.  
  10. } catch (HttpResponseException e) {
  11. throw new RelyingPartyException(HTTP_EXC_MSG, e);
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement