コード例 #1
0
ファイル: ClientAdapter.java プロジェクト: tfzhang/keycloak
 @Override
 public Map<String, String> getAttributes() {
   if (updated != null) return updated.getAttributes();
   Map<String, String> copy = new HashMap<String, String>();
   copy.putAll(cached.getAttributes());
   return copy;
 }