/home/kosta/dev/java/ria_test/web/java/KGIRiaTest/web/server/RiaServerBurlap.java

1    /* 
2     * Copyright (c) 2004 Your Corporation. All Rights Reserved. 
3     */ 
4    package KGIRiaTest.web.server; 
5     
6    import com.caucho.burlap.server.BurlapServlet; 
7    import KGIRiaTest.RiaServerOperations; 
8    import KGIRiaTest.UserVO; 
9    import KGIRiaTest.impl.RiaServerImpl; 
10    
11   /** 
12    * Created by 
13    * User: kosta 
14    * Date: Oct 5, 2004 
15    * Time: 6:42:56 PM 
16    */ 
17   public class RiaServerBurlap extends BurlapServlet implements RiaServerOperations{ 
18    
19       RiaServerImpl impl = new RiaServerImpl(); 
20    
21     public UserVO getUser(String login) { 
22       return impl.getUser( login ); 
23     } 
24    
25     public UserVO[] listUsers() { 
26       return impl.listUsers(); 
27     } 
28      
29   } 
30