1 17 package com.sun.org.apache.xml.internal.security.utils; 18 19 20 21 import com.sun.org.apache.xml.internal.security.exceptions.XMLSecurityException; 22 import org.w3c.dom.Document ; 23 import org.w3c.dom.Element ; 24 25 26 32 public abstract class SignatureElementProxy extends ElementProxy { 33 34 39 public SignatureElementProxy(Document doc) { 40 super(doc); 41 } 44 45 52 public SignatureElementProxy(Element element, String BaseURI) 53 throws XMLSecurityException { 54 super(element, BaseURI); 55 56 } 57 58 59 public String getBaseNamespace() { 60 return Constants.SignatureSpecNS; 61 } 62 } 63 | Popular Tags |