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 PGPData extends SignatureElementProxy implements KeyInfoContent { 33 34 35 static java.util.logging.Logger log = 36 java.util.logging.Logger.getLogger(PGPData.class.getName()); 37 38 45 public PGPData(Element element, String BaseURI) throws XMLSecurityException { 46 super(element, BaseURI); 47 } 48 49 50 public String getBaseLocalName() { 51 return Constants._TAG_PGPDATA; 52 } 53 } 54 | Popular Tags |