UniformRapidSuspensionCommand.java 文件源码

java
阅读 25 收藏 0 点赞 0 评论 0

项目:nomulus 作者:
private ImmutableSortedSet<String> getExistingDsData(DomainResource domain) {
  ImmutableSortedSet.Builder<String> dsDataJsons = ImmutableSortedSet.naturalOrder();
  HexBinaryAdapter hexBinaryAdapter = new HexBinaryAdapter();
  for (DelegationSignerData dsData : domain.getDsData()) {
    dsDataJsons.add(JSONValue.toJSONString(ImmutableMap.of(
        "keyTag", dsData.getKeyTag(),
        "algorithm", dsData.getAlgorithm(),
        "digestType", dsData.getDigestType(),
        "digest", hexBinaryAdapter.marshal(dsData.getDigest()))));
  }
  return dsDataJsons.build();
}
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号