KeyInfoType.java revision faaa489e1cc905efd364e01fe09111173c95db68
//
// 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:33:54 AM PDT
//
package com.sun.identity.liberty.ws.idpp.jaxb;
/**
* Java content class for KeyInfoType 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/liberty/lib-id-sis-pp.xsd line 18)
* <p>
* <pre>
* &lt;complexType name="KeyInfoType">
* &lt;complexContent>
* &lt;extension base="{http://www.w3.org/2000/09/xmldsig#}KeyInfoType">
* &lt;attribute ref="{urn:liberty:id-sis-pp:2003-08}ACC"/>
* &lt;attribute ref="{urn:liberty:id-sis-pp:2003-08}ACCTime"/>
* &lt;attribute ref="{urn:liberty:id-sis-pp:2003-08}modificationTime"/>
* &lt;attribute ref="{urn:liberty:id-sis-pp:2003-08}modifier"/>
* &lt;/extension>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*/
public interface KeyInfoType
extends com.sun.identity.liberty.ws.common.jaxb.xmlsig.KeyInfoType
{
/**
* Gets the value of the acc property.
*
* @return
* possible object is
* {@link String}
*/
String getACC();
/**
* Sets the value of the acc property.
*
* @param value
* allowed object is
* {@link String}
*/
void setACC(String value);
/**
* Gets the value of the modificationTime property.
*
* @return
* possible object is
* {@link java.util.Calendar}
*/
java.util.Calendar getModificationTime();
/**
* Sets the value of the modificationTime property.
*
* @param value
* allowed object is
* {@link java.util.Calendar}
*/
void setModificationTime(java.util.Calendar value);
/**
* Gets the value of the modifier property.
*
* @return
* possible object is
* {@link String}
*/
String getModifier();
/**
* Sets the value of the modifier property.
*
* @param value
* allowed object is
* {@link String}
*/
void setModifier(String value);
/**
* Gets the value of the accTime property.
*
* @return
* possible object is
* {@link java.util.Calendar}
*/
java.util.Calendar getACCTime();
/**
* Sets the value of the accTime property.
*
* @param value
* allowed object is
* {@link java.util.Calendar}
*/
void setACCTime(java.util.Calendar value);
}