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 interface Impleo{ 15 /** 16 * 17 * @param context 18 * @return 19 * @throws java.lang.Exception 20 */ 21 public String implied(WebContext context) throws Exception; 22 }