LocatableService.java from Negest at Krugle
Show LocatableService.java syntax highlighted
package tk.sabreWulf.negest.servicelocator;
import tk.sabreWulf.negest.exception.*;
/**
* Services have to implement the LocatebleService interface.
*
* @author Jose Manuel Molina Pascual Sabre Wulf
* @version $Revision: 1.4 $, $Date: 2005/06/29 20:56:26 $
*/
public interface LocatableService {
/**
* init.
* @throws GenericBusinessException the business exception.
*/
void init() throws GenericBusinessException;
/**
* destroy.
* @throws GenericBusinessException the business exception.
*/
void destroy() throws GenericBusinessException;
}
See more files for this project here