Package edu.uiuc.ncsa.security.core.ipc
Class IPCEvent
- java.lang.Object
-
- java.util.EventObject
-
- edu.uiuc.ncsa.security.core.ipc.IPCEvent
-
- All Implemented Interfaces:
Serializable
public class IPCEvent extends EventObject
An event that is created for inter-process communications.Created by Jeff Gaynor
on 8/19/11 at 9:49 AM- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class java.util.EventObject
source
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getExitStatus()
Throwable
getThrowable()
void
setExitStatus(int exitStatus)
void
setThrowable(Throwable throwable)
-
Methods inherited from class java.util.EventObject
getSource, toString
-
-
-
-
Constructor Detail
-
IPCEvent
public IPCEvent(Object source)
Constructs a prototypical Event.- Parameters:
source
- The object on which the Event initially occurred.- Throws:
IllegalArgumentException
- if source is null.
-
-