-
- All Superinterfaces:
-
XMLStructure
public interface SignatureProperties extends XMLStructure
在SignatureProperties中定义的XMLSignatureProperties元素的表示 。 XML模式定义定义为:可以通过调用<element name="SignatureProperties" type="ds:SignaturePropertiesType"/> <complexType name="SignaturePropertiesType"> <sequence> <element ref="ds:SignatureProperty" maxOccurs="unbounded"/> </sequence> <attribute name="Id" type="ID" use="optional"/> </complexType>XMLSignatureFactory类的newSignatureProperties方法来创建SignatureProperties实例; 例如:XMLSignatureFactory factory = XMLSignatureFactory.getInstance("DOM"); SignatureProperties properties = factory.newSignatureProperties(props, "signature-properties-1");- 从以下版本开始:
- 1.6
- 另请参见:
-
XMLSignatureFactory.newSignatureProperties(List, String),SignatureProperty
-
-
方法摘要
所有方法 接口方法 抽象方法 Modifier and Type 方法 描述 StringgetId()返回此SignatureProperties的ID。List<SignatureProperty>getProperties()返回此SignatureProperties中包含的一个或多个SignatureProperty的SignatureProperties。-
Methods inherited from interface javax.xml.crypto.XMLStructure
isFeatureSupported
-
-
-
-
字段详细信息
-
TYPE
static final String TYPE
URI标识SignatureProperties元件(这可以被指定为值type所述的参数Reference类来识别引用的类型)。- 另请参见:
- Constant Field Values
-
-
方法详细信息
-
getId
String getId()
返回此SignatureProperties的ID。- 结果
-
该
SignatureProperties为SignatureProperties(如果未指定,null)
-
getProperties
List<SignatureProperty> getProperties()
返回SignatureProperties中包含的一个或多个SignatureProperty的SignatureProperties。- 结果
-
an unmodifiable list of one or more
SignaturePropertys
-
-