/******************************************************************************* * This file is part of the Symfony eclipse plugin. * * (c) Robert Gruendler <r.gruendler@gmail.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. ******************************************************************************/ package com.dubture.symfony.index.handler; /** * * Handler for retrieving services from the SQL index. * * * @author "Robert Gruendler <r.gruendler@gmail.com>" * */ public interface IServiceHandler { void handle(String id, String phpClass, String path, String _public, String tags); }