Algorithmpublic abstract class Algorithm extends ElementProxy The Algorithm class which stores the Algorithm URI as a string. |
Fields Summary |
---|
static Logger | log{@link java.util.logging} logging facility |
Constructors Summary |
---|
public Algorithm(Document doc, String algorithmURI)
super(doc);
this.setAlgorithmURI(algorithmURI);
| public Algorithm(Element element, String BaseURI)Constructor Algorithm
super(element, BaseURI);
|
Methods Summary |
---|
public java.lang.String | getAlgorithmURI()Method getAlgorithmURI
return this._constructionElement.getAttributeNS(null, Constants._ATT_ALGORITHM);
| protected void | setAlgorithmURI(java.lang.String algorithmURI)Sets the algorithm's URI as used in the signature.
if ((this._state == MODE_CREATE) && (algorithmURI != null)) {
this._constructionElement.setAttributeNS(null, Constants._ATT_ALGORITHM,
algorithmURI);
}
|
|