IBM WebSphere Application ServerTM
Release 8

com.ibm.websphere.wssecurity.wssapi.spec
Class ExcC14NParameterSpec

java.lang.Object
  extended by com.ibm.websphere.wssecurity.wssapi.spec.ExcC14NParameterSpec
All Implemented Interfaces:
TransformParameterSpec, java.io.Serializable, java.security.spec.AlgorithmParameterSpec

public class ExcC14NParameterSpec
extends java.lang.Object
implements TransformParameterSpec, java.io.Serializable

This is the parameters for the W3C Recommendation: Exclusive XML Canonicalization (C14N) algorithm. The parameters include an optional inclusive namespace prefix list. This class is defined in the Java Specification Requests 105.

See Also:
Serialized Form

Field Summary
static java.lang.String DEFAULT
          Indicates the default namespace : #default.
 
Constructor Summary
ExcC14NParameterSpec()
          Class constructor.
ExcC14NParameterSpec(java.util.List prefixList)
          Class constructor.
 
Method Summary
 java.util.List getPrefixList()
          Returns the list of the inclusive namespace prefixes.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

DEFAULT

public static final java.lang.String DEFAULT
Indicates the default namespace : #default.

See Also:
Constant Field Values
Constructor Detail

ExcC14NParameterSpec

public ExcC14NParameterSpec()
Class constructor.


ExcC14NParameterSpec

public ExcC14NParameterSpec(java.util.List prefixList)
                     throws java.lang.NullPointerException,
                            java.lang.ClassCastException
Class constructor.

Parameters:
prefixList - inclusive namespace prefix list. Each entry in the list is a String that represents a namespace prefix.
Throws:
java.lang.NullPointerException - if the prefixList is null
java.lang.ClassCastException - if any of the entries in the list are not of type String
Method Detail

getPrefixList

public java.util.List getPrefixList()
Returns the list of the inclusive namespace prefixes. Each entry in the list is a String that represents a namespace prefix. This implementation returns an unmodifiable list.

Returns:
list of the inclusive namespace prefix

IBM WebSphere Application ServerTM
Release 8