//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v1.0.6-b27-fcs
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2012.06.11 at 10:34:16 AM PDT
//
package com.sun.identity.wsfederation.jaxb.xmlsig;
/**
* Java content class for DSAKeyValueType complex type.
* <p>The following schema fragment specifies the expected content contained within this java content object. (defined at file:/Users/allan/A-SVN/trunk/opensso/products/federation/library/xsd/wsfederation/xmldsig-core-schema.xsd line 293)
* <p>
* <pre>
* &lt;complexType name="DSAKeyValueType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;sequence minOccurs="0">
* &lt;element name="P" type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary"/>
* &lt;element name="Q" type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary"/>
* &lt;/sequence>
* &lt;element name="G" type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary" minOccurs="0"/>
* &lt;element name="Y" type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary"/>
* &lt;element name="J" type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary" minOccurs="0"/>
* &lt;sequence minOccurs="0">
* &lt;element name="Seed" type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary"/>
* &lt;element name="PgenCounter" type="{http://www.w3.org/2000/09/xmldsig#}CryptoBinary"/>
* &lt;/sequence>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*/
public interface DSAKeyValueType {
/**
* Gets the value of the g property.
*
* @return
* possible object is
* byte[]
*/
byte[] getG();
/**
* Sets the value of the g property.
*
* @param value
* allowed object is
* byte[]
*/
void setG(byte[] value);
/**
* Gets the value of the q property.
*
* @return
* possible object is
* byte[]
*/
byte[] getQ();
/**
* Sets the value of the q property.
*
* @param value
* allowed object is
* byte[]
*/
void setQ(byte[] value);
/**
* Gets the value of the p property.
*
* @return
* possible object is
* byte[]
*/
byte[] getP();
/**
* Sets the value of the p property.
*
* @param value
* allowed object is
* byte[]
*/
void setP(byte[] value);
/**
* Gets the value of the seed property.
*
* @return
* possible object is
* byte[]
*/
byte[] getSeed();
/**
* Sets the value of the seed property.
*
* @param value
* allowed object is
* byte[]
*/
void setSeed(byte[] value);
/**
* Gets the value of the y property.
*
* @return
* possible object is
* byte[]
*/
byte[] getY();
/**
* Sets the value of the y property.
*
* @param value
* allowed object is
* byte[]
*/
void setY(byte[] value);
/**
* Gets the value of the pgenCounter property.
*
* @return
* possible object is
* byte[]
*/
byte[] getPgenCounter();
/**
* Sets the value of the pgenCounter property.
*
* @param value
* allowed object is
* byte[]
*/
void setPgenCounter(byte[] value);
/**
* Gets the value of the j property.
*
* @return
* possible object is
* byte[]
*/
byte[] getJ();
/**
* Sets the value of the j property.
*
* @param value
* allowed object is
* byte[]
*/
void setJ(byte[] value);
}