source: EDIS/trunk/java/tracking-ui-core/src/main/flex/gov/va/med/edp/business/config/MatchPersonDelegate.as@ 1227

Last change on this file since 1227 was 1227, checked in by George Lilly, 13 years ago

initial load of EDIS 1.0

File size: 579 bytes
Line 
1/* MatchPersonDelegate.as */
2
3package gov.va.med.edp.business.config
4{
5 import gov.va.med.edp.business.ResponderChainingDelegate;
6
7 import mx.rpc.IResponder;
8
9 public class MatchPersonDelegate extends ResponderChainingDelegate
10 {
11 public function MatchPersonDelegate(responder:IResponder)
12 {
13 super(responder, "matchPersons");
14 }
15
16 public function matchPersons(partial: String, personType: String):void
17 {
18 var params:Object = new Object();
19 params.partial = partial;
20 params.personType = personType;
21
22 send(params);
23 }
24 }
25}
Note: See TracBrowser for help on using the repository browser.