1 /*
2 * To change this template, choose Tools | Templates
3 * and open the template in the editor.
4 */
5
6 package com.rc.celeritas.impleo;
7
8 import org.apache.log4j.Logger;
9 import org.webmacro.servlet.WebContext;
10
11 /**
12 *
13 * @author rchoudhary
14 */
15 public class ListImpleo implements Impleo{
16
17 private static Logger log = Logger.getLogger(ListImpleo.class);
18
19 /**
20 *
21 * @param context
22 * @return
23 * @throws java.lang.Exception
24 */
25 public String implied(WebContext context) throws Exception {
26 context.put("impleo", "list");
27 //TO-DO Have to write business logic for List Impleo
28 return null;
29 }
30
31 }