1: package com.icesoft.faces.webapp.http.common; 2: 3: public interface Server { 4: 5: void service(Request request) throws Exception; 6: 7: void shutdown(); 8: }