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.webmacro.servlet.WebContext;
9
10 /**
11 *
12 * @author rchoudhary
13 */
14 public class VerifyImpleo implements Impleo{
15
16 /**
17 *
18 * @param context
19 * @return
20 * @throws java.lang.Exception
21 */
22 public String implied(WebContext context) throws Exception {
23 context.put("impleo", "verify");
24 //TO-DO Have to write business logic for Verify Impleo
25 return null;
26 }
27
28 }