1 /*
2 * $Id: IService.java,v 1.18 2011/06/16 09:29:41 jbmeslin Exp $
3 */
4 package org.rcfaces.core.internal.service;
5
6 import java.io.IOException;
7
8 import javax.faces.context.FacesContext;
9
10 /**
11 * @author Olivier Oeuillot (latest modification by $Author: jbmeslin $)
12 * @version $Revision: 1.18 $ $Date: 2011/06/16 09:29:41 $
13 */
14 public interface IService {
15
16 void initialize(FacesContext facesContext);
17
18 void service(FacesContext facesContext, String commandId)
19 throws IOException;
20 }