/* RefreshLogSelectorDelegate.as */ package gov.va.med.edp.business { import mx.rpc.IResponder; public class LogSensitivePatientAccessDelegate extends ResponderChainingDelegate { public function LogSensitivePatientAccessDelegate(responder:IResponder) { super(responder, "logSensitivePatientAccess" ); } public function logSensitivePatientAccess(dfn: String):void { var params:Object = new Object(); params.patient = dfn; send(params); } } }