Line | |
---|
1 | /* RefreshLogSelectorDelegate.as */
|
---|
2 |
|
---|
3 | package gov.va.med.edp.business
|
---|
4 | {
|
---|
5 | import mx.rpc.IResponder;
|
---|
6 |
|
---|
7 | public class LogSensitivePatientAccessDelegate extends ResponderChainingDelegate
|
---|
8 | {
|
---|
9 |
|
---|
10 | public function LogSensitivePatientAccessDelegate(responder:IResponder)
|
---|
11 | {
|
---|
12 | super(responder, "logSensitivePatientAccess" );
|
---|
13 | }
|
---|
14 |
|
---|
15 | public function logSensitivePatientAccess(dfn: String):void
|
---|
16 | {
|
---|
17 | var params:Object = new Object();
|
---|
18 | params.patient = dfn;
|
---|
19 |
|
---|
20 | send(params);
|
---|
21 | }
|
---|
22 | }
|
---|
23 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.