package com.iluwater;
/**
* This is going to be the parent service interface which we will
* use to create our services. All services will have a
*
service name
* unique id
* execution work flow
* @author saifasif
*
*/
public interface Service {
/*
* The human readable name of the service
*/
public String getName();
/*
* Unique ID of the particular service
*/
public int getId();
/*
* The workflow method that defines what this service does
*/
public void execute();
}