PGPData.java revision 661
430N/A/*
2362N/A * reserved comment block
430N/A * DO NOT REMOVE OR ALTER!
430N/A */
430N/A/*
430N/A * Copyright 1999-2004 The Apache Software Foundation.
2362N/A *
430N/A * Licensed under the Apache License, Version 2.0 (the "License");
2362N/A * you may not use this file except in compliance with the License.
430N/A * You may obtain a copy of the License at
430N/A *
430N/A * http://www.apache.org/licenses/LICENSE-2.0
430N/A *
430N/A * Unless required by applicable law or agreed to in writing, software
430N/A * distributed under the License is distributed on an "AS IS" BASIS,
430N/A * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
430N/A * See the License for the specific language governing permissions and
430N/A * limitations under the License.
430N/A *
430N/A */
2362N/Apackage com.sun.org.apache.xml.internal.security.keys.content;
2362N/A
2362N/Aimport com.sun.org.apache.xml.internal.security.exceptions.XMLSecurityException;
430N/Aimport com.sun.org.apache.xml.internal.security.utils.Constants;
430N/Aimport com.sun.org.apache.xml.internal.security.utils.SignatureElementProxy;
430N/Aimport org.w3c.dom.Element;
430N/A
430N/A/**
430N/A *
430N/A * @author $Author: mullan $
430N/A * $todo$ Implement
430N/A */
430N/Apublic class PGPData extends SignatureElementProxy implements KeyInfoContent {
430N/A
430N/A /**
430N/A * Constructor PGPData
430N/A *
430N/A * @param element
430N/A * @param BaseURI
430N/A * @throws XMLSecurityException
430N/A */
430N/A public PGPData(Element element, String BaseURI) throws XMLSecurityException {
430N/A super(element, BaseURI);
430N/A }
430N/A
430N/A /** @inheritDoc */
430N/A public String getBaseLocalName() {
430N/A return Constants._TAG_PGPDATA;
430N/A }
430N/A}
430N/A