当前位置: 首页>>代码示例>>Java>>正文


Java XMLUtils.selectDs11Node方法代码示例

本文整理汇总了Java中com.sun.org.apache.xml.internal.security.utils.XMLUtils.selectDs11Node方法的典型用法代码示例。如果您正苦于以下问题:Java XMLUtils.selectDs11Node方法的具体用法?Java XMLUtils.selectDs11Node怎么用?Java XMLUtils.selectDs11Node使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.sun.org.apache.xml.internal.security.utils.XMLUtils的用法示例。


在下文中一共展示了XMLUtils.selectDs11Node方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: itemDigest

import com.sun.org.apache.xml.internal.security.utils.XMLUtils; //导入方法依赖的package包/类
/**
 * Method itemDigest
 *
 * @param i
 * @return the X509Digest, null if not present
 * @throws XMLSecurityException
 */
public XMLX509Digest itemDigest(int i) throws XMLSecurityException {

    Element e =
        XMLUtils.selectDs11Node(
            this.constructionElement.getFirstChild(), Constants._TAG_X509DIGEST, i);

    if (e != null) {
        return new XMLX509Digest(e, this.baseURI);
    }
    return null;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:19,代码来源:X509Data.java

示例2: itemDEREncodedKeyValue

import com.sun.org.apache.xml.internal.security.utils.XMLUtils; //导入方法依赖的package包/类
/**
 * Method itemDEREncodedKeyValue
 *
 * @param i
 * @return the asked DEREncodedKeyValue element, null if the index is too big
 * @throws XMLSecurityException
 */
public DEREncodedKeyValue itemDEREncodedKeyValue(int i) throws XMLSecurityException {
    Element e =
        XMLUtils.selectDs11Node(
            this.constructionElement.getFirstChild(), Constants._TAG_DERENCODEDKEYVALUE, i);

    if (e != null) {
        return new DEREncodedKeyValue(e, this.baseURI);
    }
    return null;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:18,代码来源:KeyInfo.java

示例3: itemKeyInfoReference

import com.sun.org.apache.xml.internal.security.utils.XMLUtils; //导入方法依赖的package包/类
/**
 * Method itemKeyInfoReference
 *
 * @param i
 * @return the asked KeyInfoReference element, null if the index is too big
 * @throws XMLSecurityException
 */
public KeyInfoReference itemKeyInfoReference(int i) throws XMLSecurityException {
    Element e =
        XMLUtils.selectDs11Node(
            this.constructionElement.getFirstChild(), Constants._TAG_KEYINFOREFERENCE, i);

    if (e != null) {
        return new KeyInfoReference(e, this.baseURI);
    }
    return null;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:18,代码来源:KeyInfo.java


注:本文中的com.sun.org.apache.xml.internal.security.utils.XMLUtils.selectDs11Node方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。