1 17 package com.sun.org.apache.xml.internal.security.keys.content; 18 19 20 21 import com.sun.org.apache.xml.internal.security.exceptions.XMLSecurityException; 22 import com.sun.org.apache.xml.internal.security.utils.Constants; 23 import com.sun.org.apache.xml.internal.security.utils.SignatureElementProxy; 24 import org.w3c.dom.Element ; 25 26 27 32 public class SPKIData extends SignatureElementProxy implements KeyInfoContent { 33 34 35 static java.util.logging.Logger log = 36 java.util.logging.Logger.getLogger(SPKIData.class.getName()); 37 38 45 public SPKIData(Element element, String BaseURI) 46 throws XMLSecurityException { 47 super(element, BaseURI); 48 } 49 50 51 public String getBaseLocalName() { 52 return Constants._TAG_SPKIDATA; 53 } 54 } 55 | Popular Tags |