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 EncryptionElementProxy extends ElementProxy { 33 34 39 public EncryptionElementProxy(Document doc) { 40 super(doc); 41 } 42 43 50 public EncryptionElementProxy(Element element, String BaseURI) 51 throws XMLSecurityException { 52 super(element, BaseURI); 53 } 54 55 56 public final String getBaseNamespace() { 57 return EncryptionConstants.EncryptionSpecNS; 58 } 59 } 60 | Popular Tags |