01: /*
02: * All content copyright (c) 2003-2007 Terracotta, Inc., except as may otherwise be noted in a separate copyright
03: * notice. All rights reserved.
04: */
05: package com.tc.object.event;
06:
07: import com.tc.async.api.EventContext;
08: import com.tcclient.object.DistributedMethodCall;
09:
10: public class DmiEventContext implements EventContext {
11:
12: private final DistributedMethodCall dmc;
13:
14: public DmiEventContext(DistributedMethodCall dmc) {
15: this .dmc = dmc;
16: }
17:
18: public DistributedMethodCall getDmc() {
19: return dmc;
20: }
21:
22: }
|