This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.


javax.xml.crypto.dsig
interface SignatureProperties

All Superinterfaces:
XMLStructure

public interface SignatureProperties
extends XMLStructure

A representation of the XML SignatureProperties element as defined in the W3C Recommendation for XML-Signature Syntax and Processing. The XML Schema Definition is defined as:


<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>
 
A SignatureProperties instance may be created by invoking the {@link XMLSignatureFactory#newSignatureProperties newSignatureProperties} method of the {@link XMLSignatureFactory} class; for example:
   XMLSignatureFactory factory = XMLSignatureFactory.getInstance("DOM");
   SignatureProperties properties = 
	factory.newSignatureProperties(props, "signature-properties-1");
 


Field Summary
static String TYPE
          URI that identifies the SignatureProperties element (this can be specified as the value of the type parameter of the javax.xml.crypto.dsig.Reference class to identify the referent's type).
 
Method Summary
 String

          Returns the Id of this SignatureProperties.
 List

          Returns an java.util.Collections.unmodifiableList of one or more javax.xml.crypto.dsig.SignaturePropertys that are contained in this SignatureProperties.
 
Methods inherited from class javax.xml.crypto.XMLStructure
isFeatureSupported
 

Field Detail

TYPE

public static final String TYPE
URI that identifies the SignatureProperties element (this can be specified as the value of the type parameter of the {@link Reference} class to identify the referent's type).
Method Detail

getId

public String getId()
Returns the Id of this SignatureProperties.

Returns:
the Id of this SignatureProperties (or null if not specified)

getProperties

public List getProperties()
Returns an {@link java.util.Collections#unmodifiableList unmodifiable list} of one or more {@link SignatureProperty}s that are contained in this SignatureProperties.

Returns:
an unmodifiable list of one or more SignaturePropertys


This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.
This page displays the Jadeite version of the documention, which is derived from the offical documentation that contains this copyright notice:
Copyright 2008 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.
The official Sun™ documentation can be found here at http://java.sun.com/javase/6/docs/api/.