* @param application Custom Service {@link TwillApplication} to include in the Application
*/
private void addService(TwillApplication application) {
Preconditions.checkNotNull(application, "Service cannot be null.");
DefaultServiceSpecification spec = new DefaultServiceSpecification(application.getClass().getName(),
application.configure());
services.put(spec.getName(), spec);
}