|
JavaTM Platform Standard Ed. 6 |
|||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
public interface Manifest
在 W3C Recommendation for XML-Signature Syntax and Processing 中定义的 XML Manifest
元素的表示形式。XML Schema Definition 定义如下:
<element name="Manifest" type="ds:ManifestType"/>
<complexType name="ManifestType">
<sequence>
<element ref="ds:Reference" maxOccurs="unbounded"/>
</sequence>
<attribute name="Id" type="ID" use="optional"/>
</complexType>
调用 XMLSignatureFactory
类的一个 newManifest
方法可以创建 Manifest
实例,例如:
XMLSignatureFactory factory = XMLSignatureFactory.getInstance("DOM"); List references = Collections.singletonList(factory.newReference ("#reference-1", DigestMethod.SHA1)); Manifest manifest = factory.newManifest(references, "manifest-1");
XMLSignatureFactory.newManifest(List)
,
XMLSignatureFactory.newManifest(List, String)
字段摘要 | |
---|---|
static String |
TYPE
标识 Manifest 元素的 URI(可以将其指定为 Reference 类的 type 参数值,以标识引用的类型)。 |
方法摘要 | |
---|---|
String |
getId()
返回此 Manifest 的 Id。 |
List |
getReferences()
返回一个 不可修改的列表 ,由包含在此 Manifest 中的一个或多个 Reference 组成。 |
从接口 javax.xml.crypto.XMLStructure 继承的方法 |
---|
isFeatureSupported |
字段详细信息 |
---|
static final String TYPE
Manifest
元素的 URI(可以将其指定为 Reference
类的 type
参数值,以标识引用的类型)。
方法详细信息 |
---|
String getId()
Manifest
的 Id。
Manifest
的 Id(如果未指定,则返回 null
)List getReferences()
不可修改的列表
,由包含在此 Manifest
中的一个或多个 Reference
组成。
Reference
的不可修改列表
|
JavaTM Platform Standard Ed. 6 |
|||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
版权所有 2007 Sun Microsystems, Inc. 保留所有权利。 请遵守许可证条款。另请参阅文档重新分发政策。