org.opensaml.xmlsec.signature.DSAKeyValue Maven / Gradle / Ivy
/*
* Licensed to the University Corporation for Advanced Internet Development,
* Inc. (UCAID) under one or more contributor license agreements. See the
* NOTICE file distributed with this work for additional information regarding
* copyright ownership. The UCAID licenses this file to You under the Apache
* License, Version 2.0 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.opensaml.xmlsec.signature;
import javax.annotation.Nullable;
import javax.xml.namespace.QName;
import org.opensaml.core.xml.XMLObject;
import org.opensaml.xmlsec.signature.support.SignatureConstants;
/** XMLObject representing XML Digital Signature, version 20020212, DSAKeyValue element. */
public interface DSAKeyValue extends XMLObject {
/** Element local name. */
public static final String DEFAULT_ELEMENT_LOCAL_NAME = "DSAKeyValue";
/** Default element name. */
public static final QName DEFAULT_ELEMENT_NAME = new QName(SignatureConstants.XMLSIG_NS,
DEFAULT_ELEMENT_LOCAL_NAME, SignatureConstants.XMLSIG_PREFIX);
/** Local name of the XSI type. */
public static final String TYPE_LOCAL_NAME = "DSAKeyValueType";
/** QName of the XSI type. */
public static final QName TYPE_NAME = new QName(SignatureConstants.XMLSIG_NS, TYPE_LOCAL_NAME,
SignatureConstants.XMLSIG_PREFIX);
/**
* Get the P child element.
*
* @return the P child element
*/
@Nullable public P getP();
/**
* Set the P child element.
*
* @param newP the new P child element
*/
public void setP(@Nullable final P newP);
/**
* Get the Q child element.
*
* @return the Q child element
*/
@Nullable public Q getQ();
/**
* Set the Q child element.
*
* @param newQ the new Q child element
*/
public void setQ(@Nullable final Q newQ);
/**
* Get the G child element.
*
* @return the G child element
*/
@Nullable public G getG();
/**
* Set the G child element.
*
* @param newG the new G child element
*/
public void setG(@Nullable final G newG);
/**
* Get the Y child element.
*
* @return the Y child element
*/
@Nullable public Y getY();
/**
* Set the Y child element.
*
* @param newY the new Y child element
*/
public void setY(@Nullable final Y newY);
/**
* Get the J child element.
*
* @return the J child element
*/
@Nullable public J getJ();
/**
* Set the J child element.
*
* @param newJ the new J child element
*/
public void setJ(@Nullable final J newJ);
/**
* Get the Seed element.
*
* @return the Seed element
*/
@Nullable public Seed getSeed();
/**
* Set the Seed element.
*
* @param newSeed new Seed element
*/
public void setSeed(@Nullable final Seed newSeed);
/**
* Get the PgenCounter element.
*
* @return the PgenCounter element
*/
@Nullable public PgenCounter getPgenCounter();
/**
* Set the PgenCounter element.
*
* @param newPgenCounter new PgenCounter element
*/
public void setPgenCounter(@Nullable final PgenCounter newPgenCounter);
}