Interface AlgorithmMethod

All Known Subinterfaces:
CanonicalizationMethod, DigestMethod, SignatureMethod, Transform
All Known Implementing Classes:
TransformService

public interface AlgorithmMethod

An abstract representation of an algorithm defined in the XML Security specifications. Subclasses represent specific types of XML security algorithms, such as a Transform.

Since:
1.6

Methods

Modifier and Type Method and Description
String getAlgorithm()

Returns the algorithm URI of this AlgorithmMethod.

AlgorithmParameterSpec getParameterSpec()

Returns the algorithm parameters of this AlgorithmMethod.

Methods

getAlgorithm

String getAlgorithm()

Returns the algorithm URI of this AlgorithmMethod.

Returns:
the algorithm URI of this AlgorithmMethod

getParameterSpec

AlgorithmParameterSpec getParameterSpec()

Returns the algorithm parameters of this AlgorithmMethod.

Returns:
the algorithm parameters of this AlgorithmMethod. Returns null if this AlgorithmMethod does not require parameters and they are not specified.

© 1993, 2020, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/javase/8/docs/api/javax/xml/crypto/AlgorithmMethod.html