com.ibm.security.certclient.base

Class PkRepEvent

  1. java.lang.Object
  2. extended byjava.util.EventObject
  3. extended bycom.ibm.security.certclient.base.PkEvent
  4. extended bycom.ibm.security.certclient.base.PkRepEvent
All implemented interfaces:
Serializable
Direct known subclasses:
PkCertRepEvent, PkConfRepEvent, PkGnrlRepEvent, PkHttpRepEvent, PkKrecRepEvent, PkRevoRepEvent

  1. public abstract class PkRepEvent
  2. extends PkEvent
Superclass of all PKI reply events.
Author:
Rod Mancisidor
See Also:
Serialized Form

Field Summary

Fields inherited from class com.ibm.security.certclient.base.PkEvent
msg
Fields inherited from class java.util.EventObject
source

Constructor Summary

Modifier Constructor and Description
  1. protected
PkRepEvent(Object source,Object msg,PkReqEvent req)
Constructs a PkRepEvent.

Method Summary

Modifier and Type Method and Description
  1. PkReqEvent
getReq()
Returns the request event that caused the creation of this reply event.
Methods inherited from class com.ibm.security.certclient.base.PkEvent
getMsg, toString, write
Methods inherited from class java.util.EventObject
getSource
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait

Constructor Detail

PkRepEvent

  1. protected PkRepEvent(Object source,
  2. Object msg,
  3. PkReqEvent req)
Constructs a PkRepEvent.
Parameters:
source - The object that constructs the event. Usually, but not necessarily, the source is an instance of a subclass of * PkActiveSource.
msg - The message that was parsed in order to create this event. msg may be null when the event is not built from a message. The class of msg depends on the PkEventFormatter used to create this event.
req - The request object that caused the creation of this reply. If the reply event is not built as a result of processing a request, then req can be null.

Method Detail

getReq

  1. public PkReqEvent getReq()
Returns the request event that caused the creation of this reply event. If the reply event was not built as a result of a request event, then null is returned.